52 lines
696 B
PHP
52 lines
696 B
PHP
<?php
|
|
|
|
return [
|
|
|
|
'label' => 'Profilo',
|
|
|
|
'form' => [
|
|
|
|
'email' => [
|
|
'label' => 'Email',
|
|
],
|
|
|
|
'name' => [
|
|
'label' => 'Nome',
|
|
],
|
|
|
|
'password' => [
|
|
'label' => 'Nuova password',
|
|
],
|
|
|
|
'password_confirmation' => [
|
|
'label' => 'Conferma nuova password',
|
|
],
|
|
|
|
'actions' => [
|
|
|
|
'save' => [
|
|
'label' => 'Salva modifiche',
|
|
],
|
|
|
|
],
|
|
|
|
],
|
|
|
|
'notifications' => [
|
|
|
|
'saved' => [
|
|
'title' => 'Salvato',
|
|
],
|
|
|
|
],
|
|
|
|
'actions' => [
|
|
|
|
'cancel' => [
|
|
'label' => 'Indietro',
|
|
],
|
|
|
|
],
|
|
|
|
];
|