@if($hasMultipleCorrectAnswers)
{{ __('student.quiz.multiple_answers_allowed') }}
@endif
@foreach((array)$currentQuestion->options as $key => $option)
@php
$letter = strtoupper($key); // a -> A, b -> B, etc.
$answerId = 'answer_' . $currentQuestionIndex . '_' . $letter;
$isSelected = in_array($letter, $selectedAnswers);
@endphp
@endforeach