2018-08-27 09:18:09 -04:00
|
|
|
@extends('simple-layout')
|
|
|
|
|
|
|
|
@section('toolbar')
|
|
|
|
<div class="col-sm-12 faded">
|
2018-09-16 14:34:09 -04:00
|
|
|
@include('shelves._breadcrumbs', ['shelf' => $shelf])
|
2018-08-27 09:18:09 -04:00
|
|
|
</div>
|
|
|
|
@stop
|
|
|
|
|
|
|
|
@section('body')
|
|
|
|
|
|
|
|
<div class="container small">
|
|
|
|
<p> </p>
|
|
|
|
<div class="card">
|
2018-09-16 14:34:09 -04:00
|
|
|
<h3>@icon('edit') {{ trans('entities.shelves_edit') }}</h3>
|
2018-08-27 09:18:09 -04:00
|
|
|
<div class="body">
|
2018-09-16 14:34:09 -04:00
|
|
|
<form action="{{ $shelf->getUrl() }}" method="POST">
|
2018-08-27 09:18:09 -04:00
|
|
|
<input type="hidden" name="_method" value="PUT">
|
2018-09-16 14:34:09 -04:00
|
|
|
@include('shelves/form', ['model' => $shelf])
|
2018-08-27 09:18:09 -04:00
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
@include('components.image-manager', ['imageType' => 'cover'])
|
|
|
|
@stop
|