@extends('admin.layout') @section('content') {{-- --}} {{-- --}} Add MCQ Question Dashboard Add MCQ Question Add Question MCQ Question List @csrf Question @if ($errors->has('question')) {{ $errors->first('question') }} @endif Solution @if ($errors->has('solution')) {{ $errors->first('solution') }} @endif {{-- --}} Code (unique code) @if ($errors->has('code')) {{ $errors->first('code') }} @endif Level Type --select-level-- Easy Medium Hard @if ($errors->has('level')) {{ $errors->first('level') }} @endif Number of Options --select-number-of-options-- 2 3 4 @if ($errors->has('numberofop')) {{ $errors->first('numberofop') }} @endif {{-- Correct Option Select Option @if (!empty($mcq_options)) @foreach ($mcq_options as $mcq_option) @endforeach @endif @if ($errors->has('correct_option')) {{ $errors->first('correct_option') }} @endif --}} Submit @endsection @push('footer-script') @endpush