12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <?php
-
- return [
-
- 'label' => 'Profil',
-
- 'form' => [
-
- 'email' => [
- 'label' => 'Alamat email',
- ],
-
- 'name' => [
- 'label' => 'Nama',
- ],
-
- 'password' => [
- 'label' => 'Kata sandi baru',
- ],
-
- 'password_confirmation' => [
- 'label' => 'Konfirmasi kata sandi baru',
- ],
-
- 'actions' => [
-
- 'save' => [
- 'label' => 'Simpan',
- ],
-
- ],
-
- ],
-
- 'notifications' => [
-
- 'saved' => [
- 'title' => 'Disimpan',
- ],
-
- ],
-
- 'actions' => [
-
- 'cancel' => [
- 'label' => 'Kembali',
- ],
-
- ],
-
- ];
|