@extends('web.layouts.layout') @section('content')

{{ $headTitle ?? "" }}

{{ $allQuestionsCount }}/

{{ $correctQuestionsCount }}

@if($examAnswers->isNotEmpty()) @foreach($examAnswers as $value) @php $question = $value->question; @endphp
@if($question->content_type === 'text')
{{ $question->currentDescription->title ?? "" }}
@else
{{ __('exams::exams.question_image') }}
@endif @if($question->answers->isNotEmpty()) @foreach($question->answers as $answer)
user_answer_id == $answer->id)/>
@endforeach @endif
@endforeach @endif
@if($exam?->id)
{{ __('exams::exams.retake_exam') }}
@endif @if(!empty($returnUrl)) {{ $buttonText }} @endif
@endsection @push('stack_scripts') @endpush