{{-- ── Top Bar ─────────────────────────────────────────────────────────── --}}
{{ $session->title }}
{{ auth()->user()->name }}  |  {{ auth()->user()->studentProfile?->reg_number }}
@if($hasCalculator) @endif {{-- Mobile nav toggle --}}
00:00
{{-- ── Subject Tabs ─────────────────────────────────────────────────────── --}}
@foreach($examData as $si => $subjectGroup) @endforeach
{{-- ── Main Body ────────────────────────────────────────────────────────── --}}
{{-- Question Panel --}}
@foreach($examData as $si => $subjectGroup)
@foreach($subjectGroup['questions'] as $qi => $qdata) @php $q = $qdata['question']; $answer = $qdata['answer']; $aq = $qdata['aq']; $globalIdx = $aq->question_order - 1; @endphp
{{-- Passage --}} @if($q->instructionGroup)
Read the passage below and answer the questions
{!! $q->instructionGroup->passage_text !!}
@endif {{-- Question Card --}}
Question {{ $aq->question_order }} of {{ $attempt->total_questions }}
{!! $q->question_text !!}
@if($q->question_image) Question image @endif {{-- Options --}} @foreach($q->options as $option)
{{ $option->option_label }}
{!! $option->option_text !!}
@endforeach
@endforeach
@endforeach
{{-- Navigation Sidebar --}}
{{-- ── Bottom Navigation ────────────────────────────────────────────────── --}}
{{-- ── Saving Indicator ─────────────────────────────────────────────────── --}}
Saved
{{-- ── Submit Confirmation Modal ────────────────────────────────────────── --}} @if($hasCalculator) {{-- ── Scientific Calculator ────────────────────────────────────────────── --}}
CALCULATOR
0
@endif {{-- Hidden submit form --}}