Quiz Name *
@if ($errors->has('quiz_name'))

{{ $errors->first('quiz_name') }}

@endif
Status *
@if ($errors->has('status'))

{{ $errors->first('status') }}

@endif
Image
@if ($errors->has('question_img'))

{{ $errors->first('question_img') }}

@endif @if(isset($quiz)) @if($quiz->question_img) @endif @endif
Question *
@if ($errors->has('question'))

{{ $errors->first('question') }}

@endif
@if(isset($quizoptions)) @for($i=0;$i
@if ($errors->has('correct_answer'))

{{ $errors->first('correct_answer') }}

@endif
@if ($errors->has('options'))

{{ $errors->first('options') }}

@endif
@if($i!=0) - @endif
@endfor @else
@if ($errors->has('correct_answer'))

{{ $errors->first('correct_answer') }}

@endif
@if ($errors->has('options'))

{{ $errors->first('options') }}

@endif
@endif