1 @extends('layouts.simple')
5 <div class="container small">
8 @include('entities.breadcrumbs', ['crumbs' => [
10 $book->getUrl('/edit') => [
11 'text' => trans('entities.books_edit'),
17 <main class="content-wrap card auto-height">
18 <h1 class="list-heading">{{ trans('entities.books_edit') }}</h1>
19 <form action="{{ $book->getUrl() }}" method="POST" enctype="multipart/form-data">
20 <input type="hidden" name="_method" value="PUT">
21 @include('books.parts.form', [
23 'returnLocation' => $book->getUrl()
29 @if(userCan('book-delete', $book) && userCan('book-create-all') && userCan('bookshelf-create-all'))
30 @include('books.parts.convert-to-shelf', ['book' => $book])