| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <?php
-
- return [
-
- 'title' => 'Registar',
-
- 'heading' => 'Registe-se',
-
- 'actions' => [
-
- 'login' => [
- 'before' => 'ou',
- 'label' => 'iniciar sessão na sua conta',
- ],
-
- ],
-
- 'form' => [
-
- 'email' => [
- 'label' => 'Endereço de e-mail',
- ],
-
- 'name' => [
- 'label' => 'Nome',
- ],
-
- 'password' => [
- 'label' => 'Palavra-passe',
- 'validation_attribute' => 'palavra-passe',
- ],
-
- 'password_confirmation' => [
- 'label' => 'Confirmar palavra-passe',
- ],
-
- 'actions' => [
-
- 'register' => [
- 'label' => 'Registar conta',
- ],
-
- ],
-
- ],
-
- 'notifications' => [
-
- 'throttled' => [
- 'title' => 'Muitas tentativas de registo',
- 'body' => 'Por favor, tente novamente em :seconds segundos.',
- ],
-
- ],
-
- ];
|