@extends('layouts.admin') @section('content')
Create Quiz
@csrf
Title:
Course
{{ trans('global.pleaseSelect') }}
@foreach ($courses as $key => $course)
{{ $course->title }}
@endforeach
Module
Topic
Select Question
Select Exam Type
{{ trans('global.pleaseSelect') }}
@foreach (App\Models\Quiz::EXAM_TYPES_SELECT as $key => $label)
{{ $label }}
@endforeach
Quiz Mark:
Quiz date & time
Quiz Time Limit
Description:
{{ trans('global.save') }}
@endsection @section('scripts') @parent @endsection