@extends('layouts.admin') @section('content')
{{ trans('global.create') }} {{ trans('cruds.faqQuestion.title_singular') }}
@csrf
@if($errors->has('category_id')) {{ $errors->first('category_id') }} @endif
@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