@extends('backpack::layout') @section('header')

{!! $crud->getHeading() ?? $crud->entity_name_plural !!} {!! $crud->getSubheading() ?? trans('backpack::crud.edit').' '.$crud->entity_name !!}.

@endsection @section('content') @if ($crud->hasAccess('list')) {{ trans('backpack::crud.back_to_all') }} {{ $crud->entity_name_plural }} @endif
@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' => $fields, 'action' => 'edit']) @else @include('crud::form_content', ['fields' => $fields, 'action' => 'edit']) @endif
@include('crud::inc.form_save_buttons')
@endsection