2018-08-27 21:18:09 +08:00
|
|
|
@extends('simple-layout')
|
|
|
|
|
|
|
|
@section('body')
|
|
|
|
|
|
|
|
<div class="container small">
|
2019-02-03 21:45:45 +08:00
|
|
|
|
|
|
|
<div class="my-l">
|
|
|
|
@include('partials.breadcrumbs', ['crumbs' => [
|
|
|
|
$shelf,
|
|
|
|
$shelf->getUrl('/edit') => trans('entities.shelves_edit')
|
|
|
|
]])
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="card content-wrap">
|
|
|
|
<h1 class="list-heading">{{ trans('entities.shelves_edit') }}</h1>
|
|
|
|
<form action="{{ $shelf->getUrl() }}" method="POST">
|
|
|
|
<input type="hidden" name="_method" value="PUT">
|
|
|
|
@include('shelves/form', ['model' => $shelf])
|
|
|
|
</form>
|
2018-08-27 21:18:09 +08:00
|
|
|
</div>
|
|
|
|
</div>
|
2019-02-03 21:45:45 +08:00
|
|
|
|
|
|
|
@include('components.image-manager', ['imageType' => 'cover'])
|
2018-08-27 21:18:09 +08:00
|
|
|
@stop
|