@extends('layouts.app') @section('namePage', 'Kuis') @section('content')
@csrf @if (isset($quiz)) @method('PUT') @endif

{{ isset($quiz) ? 'Ubah Kuis' : 'Tambah Kuis' }}

@error('title')

{{ $message }}

@enderror
@error('duration')

{{ $message }}

@enderror
@if (isset($quiz))

Daftar Pertanyaan

Tambah Soal
@forelse ($questions as $item)
{!! $item['question'] !!}
@foreach (['A', 'B', 'C', 'D'] as $opt)
@endforeach
Edit
@empty
Belum ada pertanyaan.
@endforelse
@endif {{-- Modal Kembali --}} {{-- Modal Simpan --}} {{-- Modal Hapus Soal --}} @endsection @section('scripts') @endsection