@extends('layouts.' . ($ajax ? 'ajax' : 'app'), [ 'title' => trans($name . '.edit.title', ['name' => $model->name]), 'description' => '', 'breadcrumbs' => [ ['url' => route($name . '.index'), 'label' => trans($name . '.index.title')], ['url' => route($name . '.show', $model->id), 'label' => $model->name], trans('crud.update'), ] ]) @inject('campaign', 'App\Services\CampaignService') @section('header-extra')
@include('cruds.fields.save', ['disableCancel' => true])
@endsection @section('content') @include('partials.errors') {!! Form::model($model, ['method' => 'PATCH', 'enctype' => 'multipart/form-data', 'route' => [$name . '.update', $model->id], 'data-shortcut' => '1']) !!} {!! Form::close() !!} @endsection @include('editors.editor')