@extends('layouts.admin') @section('title','FAQs') @section('css') @endsection @section('breadcrumb', 'FAQs') @section('content')
{{$faq->id == ''?"Add": "Edit"}} FAQ @if($message!='') {{$message}} @endif
@csrf
@if ($errors->has('question')) {{$errors->first('question')}} @endif
@if ($errors->has('fr_question')) {{$errors->first('fr_question')}} @endif
@if ($errors->has('answer')) {{$errors->first('answer')}} @endif
@if ($errors->has('fr_answer')) {{$errors->first('fr_answer')}} @endif
@if($faq->id != '') @method('put') @endif
@endsection @section('js') @endsection