@extends('backend.layout.app') @section('content')

Edit Quiz

@csrf @method('PUT')
@foreach ($quiz->questions as $index => $q)
Question {{ $index + 1 }}
@for ($i = 1; $i <= 4; $i++)
correct_answer == "option_$i" ? 'checked' : '' }} required>
@endfor
@endforeach
@endsection @push('js') @endpush