mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
d886c6a32e
Also prevent pointer error on custom home page
24 lines
696 B
PHP
24 lines
696 B
PHP
@extends('simple-layout')
|
|
|
|
@section('toolbar')
|
|
<div class="col-sm-12 faded">
|
|
@include('books._breadcrumbs', ['book' => $book])
|
|
</div>
|
|
@stop
|
|
|
|
@section('body')
|
|
|
|
<div class="container small">
|
|
<p> </p>
|
|
<div class="card">
|
|
<h3>@icon('edit') {{ trans('entities.books_edit') }}</h3>
|
|
<div class="body">
|
|
<form action="{{ $book->getUrl() }}" method="POST">
|
|
<input type="hidden" name="_method" value="PUT">
|
|
@include('books/form', ['model' => $book])
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@include('components.image-manager', ['imageType' => 'cover'])
|
|
@stop |