12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <?php
-
- return [
-
- 'label' => 'Perfil',
-
- 'form' => [
-
- 'email' => [
- 'label' => 'Endereço de e-mail',
- ],
-
- 'name' => [
- 'label' => 'Nome',
- ],
-
- 'password' => [
- 'label' => 'Nova palavra-passe',
- ],
-
- 'password_confirmation' => [
- 'label' => 'Confirmar nova palavra-passe',
- ],
-
- 'actions' => [
-
- 'save' => [
- 'label' => 'Guardar alterações',
- ],
-
- ],
-
- ],
-
- 'notifications' => [
-
- 'saved' => [
- 'title' => 'Guardado',
- ],
-
- ],
-
- 'actions' => [
-
- 'cancel' => [
- 'label' => 'Cancelar',
- ],
-
- ],
-
- ];
|