2017-08-26 08:24:55 -04:00
|
|
|
@extends('simple-layout')
|
2015-07-12 15:01:42 -04:00
|
|
|
|
2017-08-26 08:24:55 -04:00
|
|
|
@section('body')
|
2016-12-03 13:35:40 -05:00
|
|
|
|
2018-05-28 05:33:38 -04:00
|
|
|
<div class="container small">
|
2019-01-13 10:54:55 -05:00
|
|
|
|
|
|
|
<div class="my-l">
|
|
|
|
@include('partials.breadcrumbs', ['crumbs' => [
|
|
|
|
$book,
|
2019-02-03 08:45:45 -05:00
|
|
|
$book->getUrl('/edit') => trans('entities.books_edit')
|
2019-01-13 10:54:55 -05:00
|
|
|
]])
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="content-wrap card">
|
|
|
|
<h1 class="list-heading">{{ trans('entities.books_edit') }}</h1>
|
|
|
|
<form action="{{ $book->getUrl() }}" method="POST">
|
|
|
|
<input type="hidden" name="_method" value="PUT">
|
|
|
|
@include('books/form', ['model' => $book])
|
|
|
|
</form>
|
2017-08-26 08:24:55 -04:00
|
|
|
</div>
|
2015-07-15 17:55:49 -04:00
|
|
|
</div>
|
2019-01-13 10:54:55 -05:00
|
|
|
|
|
|
|
@include('components.image-manager', ['imageType' => 'cover'])
|
2015-07-12 15:01:42 -04:00
|
|
|
@stop
|