12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <?php
-
- return [
-
- 'label' => 'Profil',
-
- 'form' => [
-
- 'email' => [
- 'label' => 'E-mailová adresa',
- ],
-
- 'name' => [
- 'label' => 'Jméno',
- ],
-
- 'password' => [
- 'label' => 'Nové heslo',
- ],
-
- 'password_confirmation' => [
- 'label' => 'Potvrďte nové heslo',
- ],
-
- 'actions' => [
-
- 'save' => [
- 'label' => 'Uložit',
- ],
-
- ],
-
- ],
-
- 'notifications' => [
-
- 'saved' => [
- 'title' => 'Uloženo',
- ],
-
- ],
-
- 'actions' => [
-
- 'cancel' => [
- 'label' => 'Zrušit',
- ],
-
- ],
-
- ];
|