@extends('admin.layout.app') @section('title', 'Create New Quiz') @section('content')
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf @method('PUT')
@if ($quiz->type == 'blank') @endif @if ($quiz->type == 'mcq') {{-- Mcq --}}
@endif @if ($quiz->type == 'tf') {{-- True False --}} @endif @if ($quiz->type == 'audio') @endif @if ($quiz->type == 'matching') @endif
Back
@endsection @push('scripts') @endpush