@extends('layouts.admin') @section('content')
{{ trans('global.edit') }} {{ trans('cruds.faq.title_singular') }}
id]) }}" enctype="multipart/form-data"> @method('PUT') @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') }}
published || old('published', 0) === 1 ? 'checked' : '' }}>
@if($errors->has('published'))
{{ $errors->first('published') }}
@endif {{ trans('cruds.faq.fields.published_helper') }}
@endsection @section('scripts') @endsection