2017-08-26 20:24:55 +08:00
|
|
|
@extends('simple-layout')
|
2015-07-13 03:01:42 +08:00
|
|
|
|
2017-08-26 20:24:55 +08:00
|
|
|
@section('toolbar')
|
|
|
|
<div class="col-sm-12 faded">
|
|
|
|
@include('books._breadcrumbs', ['book' => $book])
|
2016-12-04 02:35:40 +08:00
|
|
|
</div>
|
2017-08-26 20:24:55 +08:00
|
|
|
@stop
|
|
|
|
|
|
|
|
@section('body')
|
2016-12-04 02:35:40 +08:00
|
|
|
|
2015-12-31 05:38:20 +08:00
|
|
|
<div class="container small" ng-non-bindable>
|
2017-08-26 20:24:55 +08:00
|
|
|
<p> </p>
|
|
|
|
<div class="card">
|
|
|
|
<h3><i class="zmdi zmdi-edit"></i> {{ 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>
|
2015-07-16 05:55:49 +08:00
|
|
|
</div>
|
2017-07-12 14:10:50 +08:00
|
|
|
@include('components.image-manager', ['imageType' => 'cover'])
|
2015-07-13 03:01:42 +08:00
|
|
|
@stop
|