SM
{{ $isArabic ? 'مرحباً بك في SmartLMS' : 'Welcome to SmartLMS' }}
{{ $isArabic ? 'سجل دخولك للوصول إلى حسابك' : 'Sign in to access your account' }}
{{ session('status') }}
@endif
@if ($errors->any())
{{ $errors->first() }}
@endif
@if ($developmentMode)
{{ $isArabic ? 'دخول سريع (بيئة التطوير)' : 'Quick Login (Dev Mode)' }}
@php $schoolManagerAccount = collect($demoAccounts ?? [])->firstWhere('type', 'admin'); @endphp @if ($schoolManagerAccount) @endif
@foreach ($featuredLoginRoles as $type)
@php
$isSpecialRole = in_array($type, ['social_worker', 'counselor', 'health_visitor', 'subject_head'], true);
$routeName = $isSpecialRole ? route('login.development.role', $type) : route('login.development', $type);
$roleLabel = str_replace('_', ' ', $type);
@endphp
@endforeach