@extends('layouts.admin') @section('content')
{{ trans('global.create') }} {{ trans('cruds.faqQuestion.title_singular') }}
@csrf
@if($errors->has('category'))
{{ $errors->first('category') }}
@endif {{ trans('cruds.faqQuestion.fields.category_helper') }}
@if($errors->has('question'))
{{ $errors->first('question') }}
@endif {{ trans('cruds.faqQuestion.fields.question_helper') }}
@if($errors->has('answer'))
{{ $errors->first('answer') }}
@endif {{ trans('cruds.faqQuestion.fields.answer_helper') }}
@endsection