@extends('layouts.app') @section('css') @endsection @section('page-header') @endsection @section('content')

{{ __('Create New FAQ Answer') }}

@csrf
{{ __('Question') }} ({{ __('Required') }})
@error('question')

{{ $errors->first('question') }}

@enderror
{{ __('FAQ Category') }} ({{ __('Required') }})
{{ __('FAQ Status') }} ({{ __('Required') }})
{{ __('Answer') }} ({{ __('Required') }})
@error('answer')

{{ $errors->first('answer') }}

@enderror
{{ __('Cancel') }}
@endsection @section('js') @endsection