@extends('layouts.admin') @section('title','Question') @section('css') @endsection @section('breadcrumb', 'Question') @section('content')
{{$question->id == ''?"Add": "Edit"}} 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
@endif @if($question->id != '') @method('put') @endif
@endsection @section('js') @endsection