@extends('layouts.admin_app') @section('title','Edit FAQ - Admin Dashboard') @section('content')

Edit FAQ

@include('flash-message')
{{@csrf_field()}}
@if($errors->has('heading_eng')) @component('components.error') {{$errors->first('heading_eng')}} @endcomponent @endif
@if($errors->has('description_eng')) @component('components.error') {{$errors->first('description_eng')}} @endcomponent @endif
@if($errors->has('heading_ar')) @component('components.error') {{$errors->first('heading_ar')}} @endcomponent @endif
@if($errors->has('description_ar')) @component('components.error') {{$errors->first('description_ar')}} @endcomponent @endif
@endsection