@extends('layouts.admin', [ 'title' => trans($name . '.index.title'), 'description' => trans($name . '.index.description'), 'breadcrumbs' => [ ['url' => route($route . '.index'), 'label' => trans($name . '.index.title')], $model->name, trans('crud.update'), ] ]) @inject('campaign', 'App\Services\CampaignService') @section('content')
@include('partials.errors') {!! Form::model($model, ['method' => 'PATCH', 'enctype' => 'multipart/form-data', 'route' => [$route . '.update', $model->id], 'data-shortcut' => "1"]) !!} @include($name . '._form', ['source' => null]) {!! Form::close() !!}
@endsection