@extends('layouts.' . ($ajax ? 'ajax' : 'app'), [ 'title' => trans($name . '.create.title'), 'description' => trans($name . '.create.description'), 'breadcrumbs' => [ ['url' => route($route . '.index'), 'label' => trans($name . '.index.title')], trans('crud.create'), ] ]) @inject('campaign', 'App\Services\CampaignService') @section('content')
@include('partials.errors') {!! Form::open(['route' => $route . '.store', 'enctype' => 'multipart/form-data', 'method'=>'POST', 'data-shortcut' => '1']) !!} @include($name . '._form', ['cancel' => route($route . '.index')]) {!! Form::close() !!}
@endsection @include('editors.editor')