@extends('layouts.app') @section('title', 'Kerjakan Kuis') @section('content')
{{-- Quiz Header - Simple & Clean --}}
{{ $kuis->mataPelajaran->nama }}

{{ $kuis->judul }}

{{ $kuis->deskripsi }}

{{-- Quiz Form --}}
@csrf {{-- Questions --}} @foreach ($kuis->pertanyaan as $index => $pertanyaan)
{{-- Question --}}

{{ $index + 1 }}. {{ $pertanyaan->pertanyaan }}

{{-- Answer Options --}}
@foreach ($pertanyaan->pilihanJawaban as $jawaban) @endforeach
@endforeach {{-- Submit Button --}}
{{-- JavaScript for Submit Control --}} @endsection