@extends('layouts.exam') @section('title', 'Ujian SIMPER') @section('content')
{{-- HEADER --}}
Soal {{ $number }} dari {{ $attempt->total_questions }}
Status: {{ ucfirst($attempt->status) }}
Timer
{{-- SOAL --}}
@php $question = $attemptQuestion->question; @endphp
@csrf
{{-- FOTO --}} @if($question->photo_path)
@endif {{-- PERTANYAAN --}}
{!! nl2br(e($question->question)) !!}
{{-- PILIHAN GANDA --}} @if($question->type == 'multiple_choice') @foreach($question->options as $option)
@endforeach @endif {{-- ESSAY --}} @if($question->type == 'essay_auto')
@endif
{{-- FOOTER --}}
@endsection