12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <?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',
- ],
-
- ],
-
- ];
|