@extends('layouts.app') @push('css_lib')
{{--dropzone--}}
@endpush @section('content')
{{trans('lang.field_plural')}}
{{trans('lang.field_desc')}}
{{trans('lang.dashboard')}}
{{trans('lang.field_plural')}}
{{trans('lang.field_edit')}}
@include('flash::message') @include('adminlte-templates::common.errors')
@can('fields.index')
{{trans('lang.field_table')}}
@endcan @can('fields.create')
{{trans('lang.field_create')}}
@endcan
{{trans('lang.field_edit')}}
{!! Form::model($field, ['route' => ['fields.update', $field->id], 'method' => 'patch']) !!}
@include('fields.fields')
{!! Form::close() !!}
@include('layouts.media_modal') @endsection @push('scripts_lib') {{--dropzone--}} @endpush