@php $isArabic = app()->getLocale() === 'ar'; $authPageTitle = $isArabic ? 'تأكيد كلمة المرور | SmartLMS' : 'Confirm Password | SmartLMS'; $authBadge = $isArabic ? 'تأكيد الهوية' : 'Identity Check'; $authBadgeIcon = 'fa-user-lock'; $authHeading = $isArabic ? 'أكد كلمة المرور قبل المتابعة' : 'Confirm your password before continuing'; $authDescription = $isArabic ? 'بعض الإجراءات الحساسة تحتاج خطوة تأكيد إضافية للتأكد من أن صاحب الجلسة الحالية هو من ينفذ العملية.' : 'Some sensitive actions require an extra confirmation step to ensure the current session owner is performing them.'; $authPanelLabel = $isArabic ? 'تأكيد العملية' : 'Action Confirmation'; $authFormHeading = $isArabic ? 'أدخل كلمة مرورك الحالية' : 'Enter your current password'; $authFormDescription = $isArabic ? 'أعد إدخال كلمة المرور الحالية للمتابعة إلى الخطوة المحمية.' : 'Re-enter your current password to continue to the protected step.'; $authHighlights = [ [ 'icon' => 'fa-shield-halved', 'title' => $isArabic ? 'حماية العمليات الحساسة' : 'Protect sensitive actions', 'description' => $isArabic ? 'يُستخدم هذا التأكيد قبل الإجراءات ذات التأثير المباشر على الحساب أو البيانات المهمة.' : 'This confirmation is used before actions with direct impact on the account or critical data.', ], [ 'icon' => 'fa-user-check', 'title' => $isArabic ? 'تأكيد مالك الجلسة' : 'Confirm session ownership', 'description' => $isArabic ? 'إعادة إدخال كلمة المرور تقلل خطر تنفيذ العملية من جهاز تُرك مفتوحًا.' : 'Re-entering the password reduces the risk of a protected action from an unattended device.', ], [ 'icon' => 'fa-arrow-rotate-left', 'title' => $isArabic ? 'مسار استعادة متاح' : 'Recovery path available', 'description' => $isArabic ? 'إذا نسيت كلمة المرور يمكنك العودة لمسار الاستعادة مباشرة من هذه الصفحة.' : 'If you forgot your password, you can jump straight into the recovery flow from this screen.', ], ]; $authSideStats = [ [ 'value' => '01', 'label' => $isArabic ? 'أدخل كلمة المرور' : 'Enter Password', 'description' => $isArabic ? 'استخدم كلمة المرور الحالية المرتبطة بالحساب.' : 'Use the current password tied to the account.', ], [ 'value' => '02', 'label' => $isArabic ? 'أكد الهوية' : 'Confirm Identity', 'description' => $isArabic ? 'يتم السماح بالإجراء بعد نجاح التحقق.' : 'The action proceeds only after successful verification.', ], [ 'value' => '03', 'label' => $isArabic ? 'أو استعد الوصول' : 'Or Recover Access', 'description' => $isArabic ? 'إذا لزم الأمر، استخدم رابط استعادة كلمة المرور.' : 'If needed, use the password recovery link.', ], ]; @endphp @extends('auth.layouts.app') @section('form')
@csrf
@endsection @section('footer') @if (Route::has('password.request'))

{{ $isArabic ? 'نسيت كلمة المرور؟' : 'Forgot your password?' }} {{ $isArabic ? 'ابدأ الاستعادة' : 'Start recovery' }}

@endif @endsection