| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <?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.',
- ],
-
- ],
-
- ];
|