52 lines
716 B
PHP
52 lines
716 B
PHP
<?php
|
|
|
|
return [
|
|
|
|
'label' => 'Profil',
|
|
|
|
'form' => [
|
|
|
|
'email' => [
|
|
'label' => 'Adresse Email',
|
|
],
|
|
|
|
'name' => [
|
|
'label' => 'Nom',
|
|
],
|
|
|
|
'password' => [
|
|
'label' => 'Nouveau mot de passe',
|
|
],
|
|
|
|
'password_confirmation' => [
|
|
'label' => 'Confirmer le nouveau mot de passe',
|
|
],
|
|
|
|
'actions' => [
|
|
|
|
'save' => [
|
|
'label' => 'Sauvegarder',
|
|
],
|
|
|
|
],
|
|
|
|
],
|
|
|
|
'notifications' => [
|
|
|
|
'saved' => [
|
|
'title' => 'Sauvegardé',
|
|
],
|
|
|
|
],
|
|
|
|
'actions' => [
|
|
|
|
'cancel' => [
|
|
'label' => 'Retour',
|
|
],
|
|
|
|
],
|
|
|
|
];
|