12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <?php
-
- return [
-
- 'label' => 'الملف الشخصي',
-
- 'form' => [
-
- 'email' => [
- 'label' => 'البريد الإلكتروني',
- ],
-
- 'name' => [
- 'label' => 'الاسم',
- ],
-
- 'password' => [
- 'label' => 'كلمة المرور الجديدة',
- ],
-
- 'password_confirmation' => [
- 'label' => 'تأكيد كلمة المرور الجديدة',
- ],
-
- 'actions' => [
-
- 'save' => [
- 'label' => 'حفظ التغييرات',
- ],
-
- ],
-
- ],
-
- 'notifications' => [
-
- 'saved' => [
- 'title' => 'تم الحفظ',
- ],
-
- ],
-
- 'actions' => [
-
- 'cancel' => [
- 'label' => 'إلغاء',
- ],
-
- ],
-
- ];
|