@if($isPassed)
You passed the exam with {{ number_format($score, 2) }}% score.
Back to Courses
@else
You scored {{ number_format($score, 2) }}%. Required: {{ $exam->passing_percentage }}%.
Back to Courses
@endif
@else
@php
$question = $questions->get($currentQuestionIndex);
@endphp
@if($question->context)
{!! nl2br(e($question->context)) !!}
@endif
@foreach($question->options as $option)
@php
$isSelected = isset($answers[$question->id]) && $answers[$question->id] == $option['id'];
@endphp
@endforeach
@endif