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