edit-profile.php 812B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <?php
  2. return [
  3. 'label' => 'الملف الشخصي',
  4. 'form' => [
  5. 'email' => [
  6. 'label' => 'البريد الإلكتروني',
  7. ],
  8. 'name' => [
  9. 'label' => 'الاسم',
  10. ],
  11. 'password' => [
  12. 'label' => 'كلمة المرور الجديدة',
  13. ],
  14. 'password_confirmation' => [
  15. 'label' => 'تأكيد كلمة المرور الجديدة',
  16. ],
  17. 'actions' => [
  18. 'save' => [
  19. 'label' => 'حفظ التغييرات',
  20. ],
  21. ],
  22. ],
  23. 'notifications' => [
  24. 'saved' => [
  25. 'title' => 'تم الحفظ',
  26. ],
  27. ],
  28. 'actions' => [
  29. 'cancel' => [
  30. 'label' => 'إلغاء',
  31. ],
  32. ],
  33. ];