@extends('backend.layouts.app') @php use App\Models\Faq; @endphp @section('content')

{{$title}}

@include('backend.layouts.alert')
@csrf
@if ($errors->has('position')) {{ $errors->first('position') }} @endif
@if ($errors->has('question')) {{ $errors->first('question') }} @endif
@if ($errors->has('answer')) {{ $errors->first('answer') }} @endif
@if (isset($pageData))
@endif
@endsection