2018-08-27 09:18:09 -04:00
|
|
|
@extends('simple-layout')
|
|
|
|
|
|
|
|
@section('body')
|
|
|
|
|
|
|
|
<div class="container small">
|
2019-02-03 08:45:45 -05:00
|
|
|
|
2019-02-17 12:52:42 -05:00
|
|
|
<div class="my-s">
|
2019-02-03 08:45:45 -05:00
|
|
|
@include('partials.breadcrumbs', ['crumbs' => [
|
|
|
|
$shelf,
|
2019-02-17 12:52:42 -05:00
|
|
|
$shelf->getUrl('/edit') => [
|
|
|
|
'text' => trans('entities.shelves_edit'),
|
|
|
|
'icon' => 'edit',
|
|
|
|
]
|
2019-02-03 08:45:45 -05:00
|
|
|
]])
|
|
|
|
</div>
|
|
|
|
|
2019-08-25 10:44:51 -04:00
|
|
|
<main class="card content-wrap">
|
2019-02-03 08:45:45 -05:00
|
|
|
<h1 class="list-heading">{{ trans('entities.shelves_edit') }}</h1>
|
2019-05-04 10:48:15 -04:00
|
|
|
<form action="{{ $shelf->getUrl() }}" method="POST" enctype="multipart/form-data">
|
2019-02-03 08:45:45 -05:00
|
|
|
<input type="hidden" name="_method" value="PUT">
|
2019-04-07 07:00:09 -04:00
|
|
|
@include('shelves.form', ['model' => $shelf])
|
2019-02-03 08:45:45 -05:00
|
|
|
</form>
|
2019-08-25 10:44:51 -04:00
|
|
|
</main>
|
2018-08-27 09:18:09 -04:00
|
|
|
</div>
|
2019-02-03 08:45:45 -05:00
|
|
|
|
2018-08-27 09:18:09 -04:00
|
|
|
@stop
|