@extends('layouts.admin') @section('title','Question') @section('css') @endsection @section('breadcrumb', 'Question') @section('content')
Add Question
@csrf
@if ($errors->has('question')) {{$errors->first('question')}} @endif
@if ($errors->has('fr_question')) {{$errors->first('fr_question')}} @endif
@if ($errors->has('questionfor')) {{$errors->first('questionfor')}} @endif
@if ($errors->has('type')) {{$errors->first('type')}} @endif
@if($question->id == '')
@else
@foreach($ans as $a)
@endforeach
@foreach($fr_ans as $fa)
@endforeach
@endif @if($question->id != '') @method('put') @endif
@endsection @section('js') @endsection