@extends('layouts.app') @push('css_lib')
{{--dropzone--}}
@endpush @section('content')
{{trans('lang.faq_category_plural')}}
|
{{trans('lang.faq_category_desc')}}
{{trans('lang.dashboard')}}
{{trans('lang.faq_category_plural')}}
{{trans('lang.faq_category_edit')}}
@include('flash::message') @include('adminlte-templates::common.errors')
@can('faqCategories.index')
{{trans('lang.faq_category_table')}}
@endcan @can('faqCategories.create')
{{trans('lang.faq_category_create')}}
@endcan
{{trans('lang.faq_category_edit')}}
{!! Form::model($faqCategory, ['route' => ['faqCategories.update', $faqCategory->id], 'method' => 'patch']) !!}
@include('faq_categories.fields')
{!! Form::close() !!}
@include('layouts.media_modal') @endsection @push('scripts_lib') {{--dropzone--}} @endpush