@extends(backpack_view('blank')) @php $defaultBreadcrumbs = [ trans('backpack::crud.admin') => backpack_url('dashboard'), $crud->entity_name_plural => url($crud->route), trans('backpack::crud.edit') => false, ]; // if breadcrumbs aren't defined in the CrudController, use the default breadcrumbs $breadcrumbs = $breadcrumbs ?? $defaultBreadcrumbs; @endphp @section('header')

Modifier l'actualité

@endsection @section('content')
@include('crud::inc.grouped_errors')
hasUploadFields('update', $entry->getKey())) enctype="multipart/form-data" @endif > {!! csrf_field() !!} {!! method_field('PUT') !!} @if ($crud->model->translationEnabled())
@endif @if(view()->exists('vendor.backpack.crud.form_content')) @include('vendor.backpack.crud.form_content', ['fields' => $crud->fields(), 'action' => 'edit']) @else @include('crud::form_content', ['fields' => $crud->fields(), 'action' => 'edit']) @endif @include('posts::partials.form_save_buttons')
@endsection