@extends('admin.layout') @section('content') Edit MCQ Dashboard MCQ List Edit MCQ Add MCQ MCQ List @csrf Name @if ($errors->has('name')) {{ $errors->first('name') }} @endif Instruction {{ $mcq->instruction }} @if ($errors->has('instruction')) {{ $errors->first('instruction') }} @endif Time Limit @if ($errors->has('time_limit')) {{ $errors->first('time_limit') }} @endif Unlimited Select Attempt retake_attempt == '1' ? 'selected' : '' }} value="1">True retake_attempt == '0' ? 'selected' : '' }} value="0">False @if ($errors->has('retake_attempt')) {{ $errors->first('retake_attempt') }} @endif @if ($mcq->retake_attempt == 0) No Of Attempt @endif Minimum Time Submit @if ($errors->has('minimum_time_submit')) {{ $errors->first('minimum_time_submit') }} @endif Passing % @if ($errors->has('passing_percent')) {{ $errors->first('passing_percent') }} @endif Correct Marks @if ($errors->has('correct_marks')) {{ $errors->first('correct_marks') }} @endif Negative Marks @if ($errors->has('negative_marks')) {{ $errors->first('negative_marks') }} @endif Submit @endsection @push('footer-script') {{-- Editor --}} @endpush