@extends('layouts.admin') @section('content')
{{ trans('global.create') }} {{ trans('cruds.faq.title_singular') }}
@csrf
@if($errors->has('title'))
{{ $errors->first('title') }}
@endif {{ trans('cruds.faq.fields.title_helper') }}
@if($errors->has('content'))
{{ $errors->first('content') }}
@endif {{ trans('cruds.faq.fields.content_helper') }}
@if($errors->has('display_order'))
{{ $errors->first('display_order') }}
@endif {{ trans('cruds.faq.fields.display_order_helper') }}
@if($errors->has('published'))
{{ $errors->first('published') }}
@endif {{ trans('cruds.faq.fields.published_helper') }}
@endsection @section('scripts') @endsection