{{ $attempt->test->title }}

@if($attempt->test->time_limit_minutes)
{{ $attempt->test->time_limit_minutes }} min time limit
@endif
Progress
@if($attempt->test->time_limit_minutes)
Time Left
--:--
@endif
Hello, {{ $attempt->taker_name }}. Answer all questions and click Submit when done. @if($attempt->test->time_limit_minutes) You have {{ $attempt->test->time_limit_minutes }} minutes. @endif
@csrf @foreach($questions as $i => $q)
Question {{ $i+1 }} of {{ $questions->count() }}  ·  {{ $q->points }} point{{ $q->points!=1?'s':'' }}
{{ $q->question_text }}
@if($q->question_type === 'short_answer')
@elseif($q->question_type === 'multi_select')
Select all that apply
@foreach($q->options as $opt)
@endforeach @else @foreach($q->options as $opt)
@endforeach @endif
@endforeach