]> BookStack Code Mirror - bookstack/blob - resources/views/shelves/edit.blade.php
respective book and chapter structure added.
[bookstack] / resources / views / shelves / edit.blade.php
1 @extends('layouts.simple')
2
3 @section('body')
4
5     <div class="container small">
6
7         <div class="my-s">
8             @include('entities.breadcrumbs', ['crumbs' => [
9                 $shelf,
10                 $shelf->getUrl('/edit') => [
11                     'text' => trans('entities.shelves_edit'),
12                     'icon' => 'edit',
13                 ]
14             ]])
15         </div>
16
17         <main class="card content-wrap">
18             <h1 class="list-heading">{{ trans('entities.shelves_edit') }}</h1>
19             <form action="{{ $shelf->getUrl() }}" method="POST" enctype="multipart/form-data">
20                 <input type="hidden" name="_method" value="PUT">
21                 @include('shelves.parts.form', ['model' => $shelf])
22             </form>
23         </main>
24     </div>
25
26 @stop