52 lines
698 B
PHP
52 lines
698 B
PHP
<?php
|
|
|
|
return [
|
|
|
|
'label' => 'Profiel',
|
|
|
|
'form' => [
|
|
|
|
'email' => [
|
|
'label' => 'E-mailadres',
|
|
],
|
|
|
|
'name' => [
|
|
'label' => 'Naam',
|
|
],
|
|
|
|
'password' => [
|
|
'label' => 'Nieuw wachtwoord',
|
|
],
|
|
|
|
'password_confirmation' => [
|
|
'label' => 'Bevestig nieuw wachtwoord',
|
|
],
|
|
|
|
'actions' => [
|
|
|
|
'save' => [
|
|
'label' => 'Opslaan',
|
|
],
|
|
|
|
],
|
|
|
|
],
|
|
|
|
'notifications' => [
|
|
|
|
'saved' => [
|
|
'title' => 'Opgeslagen',
|
|
],
|
|
|
|
],
|
|
|
|
'actions' => [
|
|
|
|
'cancel' => [
|
|
'label' => 'Terug',
|
|
],
|
|
|
|
],
|
|
|
|
];
|