@extends('backend.layouts.app') @php use App\Models\Faq; @endphp @section('content') {{__('app.faqs.title')}} {{$title}} {{$title}} @include('backend.layouts.alert') @csrf {{__('app.faqs.position')}} @if ($errors->has('position')) {{ $errors->first('position') }} @endif {{__('app.faqs.question')}} @if ($errors->has('question')) {{ $errors->first('question') }} @endif {{__('app.faqs.answer')}} {{ old('answer', $pageData['answer'] ?? '') }} @if ($errors->has('answer')) {{ $errors->first('answer') }} @endif @if (isset($pageData)) {{__('app.status')}} {{__('app.active')}} {{__('app.inactive')}} @endif @endsection