]> BookStack Code Mirror - bookstack/blob - resources/views/shelves/edit.blade.php
2199d1a548a53fa3575e469f2967b8b4d1abdb1e
[bookstack] / resources / views / shelves / edit.blade.php
1 @extends('simple-layout')
2
3 @section('body')
4
5     <div class="container small">
6
7         <div class="my-l">
8             @include('partials.breadcrumbs', ['crumbs' => [
9                 $shelf,
10                 $shelf->getUrl('/edit') => trans('entities.shelves_edit')
11             ]])
12         </div>
13
14         <div class="card content-wrap">
15             <h1 class="list-heading">{{ trans('entities.shelves_edit') }}</h1>
16             <form action="{{ $shelf->getUrl() }}" method="POST">
17                 <input type="hidden" name="_method" value="PUT">
18                 @include('shelves/form', ['model' => $shelf])
19             </form>
20         </div>
21     </div>
22
23     @include('components.image-manager', ['imageType' => 'cover'])
24 @stop