mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
47b08888ba
- Enabled proper ordering of Books in a shelf. - Improved related item destroy for all entities.
24 lines
706 B
PHP
24 lines
706 B
PHP
@extends('simple-layout')
|
|
|
|
@section('toolbar')
|
|
<div class="col-sm-12 faded">
|
|
@include('shelves._breadcrumbs', ['shelf' => $shelf])
|
|
</div>
|
|
@stop
|
|
|
|
@section('body')
|
|
|
|
<div class="container small">
|
|
<p> </p>
|
|
<div class="card">
|
|
<h3>@icon('edit') {{ trans('entities.shelves_edit') }}</h3>
|
|
<div class="body">
|
|
<form action="{{ $shelf->getUrl() }}" method="POST">
|
|
<input type="hidden" name="_method" value="PUT">
|
|
@include('shelves/form', ['model' => $shelf])
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@include('components.image-manager', ['imageType' => 'cover'])
|
|
@stop |