feat: add routes, lang, tests, stubs, docs, and docker configurations

This commit is contained in:
2026-05-21 16:05:16 +07:00
parent fad70d096b
commit 28a06315b8
3385 changed files with 177070 additions and 0 deletions
+56
View File
@@ -0,0 +1,56 @@
<?php
return [
'title' => "S'inscrire",
'heading' => "S'inscrire",
'actions' => [
'login' => [
'before' => 'ou',
'label' => 'connectez-vous à votre compte',
],
],
'form' => [
'email' => [
'label' => 'Adresse Email',
],
'name' => [
'label' => 'Nom',
],
'password' => [
'label' => 'Mot de passe',
'validation_attribute' => 'mot de passe',
],
'password_confirmation' => [
'label' => 'Confirmer le mot de passe',
],
'actions' => [
'register' => [
'label' => "S'inscrire",
],
],
],
'notifications' => [
'throttled' => [
'title' => "Trop de tentatives d'inscription",
'body' => 'Merci de réessayer dans :seconds secondes.',
],
],
];