@extends('layouts.backend') @section('content')

Edit Question

Edit Question

@csrf
@if ($errors->has('title'))
{{ $errors->first('title') }}
@endif
@if ($errors->has('type'))
{{ $errors->first('type') }}
@endif
@if ($errors->has('option_1'))
{{ $errors->first('option_1') }}
@endif
@if ($errors->has('option_2'))
{{ $errors->first('option_2') }}
@endif
@if ($errors->has('option_3'))
{{ $errors->first('option_3') }}
@endif
@if ($errors->has('option_4'))
{{ $errors->first('option_4') }}
@endif
@if ($errors->has('correct'))
{{ $errors->first('correct') }}
@endif

@endsection @section('js') @endsection