1 @extends('simple-layout')
5 <div class="container small">
8 @include('partials.breadcrumbs', ['crumbs' => [
10 $shelf->getUrl('/edit') => [
11 'text' => trans('entities.shelves_edit'),
17 <div class="card content-wrap">
18 <h1 class="list-heading">{{ trans('entities.shelves_edit') }}</h1>
19 <form action="{{ $shelf->getUrl() }}" method="POST">
20 <input type="hidden" name="_method" value="PUT">
21 @include('shelves/form', ['model' => $shelf])
26 @include('components.image-manager', ['imageType' => 'cover'])