12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <?php
-
- return [
-
- 'label' => 'Profil',
-
- 'form' => [
-
- 'email' => [
- 'label' => 'E-Mail-Adresse',
- ],
-
- 'name' => [
- 'label' => 'Name',
- ],
-
- 'password' => [
- 'label' => 'Neues Passwort',
- ],
-
- 'password_confirmation' => [
- 'label' => 'Passwort bestätigen',
- ],
-
- 'actions' => [
-
- 'save' => [
- 'label' => 'Änderung speichern',
- ],
-
- ],
-
- ],
-
- 'notifications' => [
-
- 'saved' => [
- 'title' => 'Gespeichert',
- ],
-
- ],
-
- 'actions' => [
-
- 'cancel' => [
- 'label' => 'Abbrechen',
- ],
-
- ],
-
- ];
|