@php $isArabic = app()->getLocale() === 'ar'; $supportedLocales = config('app.supported_locales', ['ar', 'en']); $languageNames = ['ar' => 'العربية', 'en' => 'English']; $authHighlights = $authHighlights ?? []; $authSideStats = $authSideStats ?? []; $authBackUrl = $authBackUrl ?? route('login'); $authBackLabel = $authBackLabel ?? ($isArabic ? 'العودة إلى تسجيل الدخول' : 'Back to sign in'); @endphp
{{ $authBadge ?? ($isArabic ? 'أمان الحساب' : 'Account Security') }}

{{ $authHeading ?? ($isArabic ? 'تجربة أمان متكاملة داخل SmartLMS' : 'A complete security flow inside SmartLMS') }}

{{ $authDescription ?? ($isArabic ? 'واجهات واضحة، ثنائية اللغة، ومصممة لتقود المستخدم بخطوات قليلة وواثقة عبر استعادة الحساب والتحقق الإضافي.' : 'Clear bilingual screens that guide users through account recovery and extra verification with minimal friction.') }}

@foreach ($supportedLocales as $locale) {{ $languageNames[$locale] ?? strtoupper($locale) }} @endforeach
@foreach ($authHighlights as $highlight)

{{ $highlight['title'] }}

{{ $highlight['description'] }}

@endforeach
@if (! empty($authSideStats))
@foreach ($authSideStats as $stat)
{{ $stat['value'] }}
{{ $stat['label'] }}

{{ $stat['description'] }}

@endforeach
@endif
SM

SmartLMS

{{ $authPanelLabel ?? ($isArabic ? 'مسار الحماية' : 'Security Flow') }}

{{ $authBackLabel }}

{{ $authFormHeading ?? ($isArabic ? 'أكمل الخطوة الحالية' : 'Complete the current step') }}

{{ $authFormDescription ?? ($isArabic ? 'المعلومات هنا تساعدك على استعادة الوصول أو تأكيد الهوية بشكل آمن.' : 'This step helps you recover access or confirm your identity securely.') }}

@if (session('status'))
{{ session('status') }}
@endif @if (session('success'))
{{ session('success') }}
@endif @if (session('resent'))
{{ __('dashboard.A fresh verification link has been sent to your email address.') }}
@endif @if ($errors->any())
{{ $errors->first() }}
@endif
@yield('form')
@hasSection('footer')
@yield('footer')
@endif
@include('partials.browser-error-logger')