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