2021-08-22 08:15:58 -04:00
|
|
|
@extends('layouts.simple')
|
2018-08-27 09:18:09 -04:00
|
|
|
|
|
|
|
@section('body')
|
|
|
|
|
|
|
|
<div class="container small">
|
2019-02-02 06:41:41 -05:00
|
|
|
|
2019-02-17 12:52:42 -05:00
|
|
|
<div class="my-s">
|
2021-08-22 08:15:58 -04:00
|
|
|
@include('entities.breadcrumbs', ['crumbs' => [
|
2019-02-17 12:52:42 -05:00
|
|
|
'/shelves' => [
|
|
|
|
'text' => trans('entities.shelves'),
|
|
|
|
'icon' => 'bookshelf',
|
|
|
|
],
|
|
|
|
'/create-shelf' => [
|
|
|
|
'text' => trans('entities.shelves_create'),
|
|
|
|
'icon' => 'add',
|
|
|
|
]
|
2019-02-02 06:41:41 -05:00
|
|
|
]])
|
|
|
|
</div>
|
|
|
|
|
2019-08-25 10:44:51 -04:00
|
|
|
<main class="card content-wrap">
|
2019-02-02 06:41:41 -05:00
|
|
|
<h1 class="list-heading">{{ trans('entities.shelves_create') }}</h1>
|
2019-08-04 09:26:39 -04:00
|
|
|
<form action="{{ url("/shelves") }}" method="POST" enctype="multipart/form-data">
|
2021-08-22 08:15:58 -04:00
|
|
|
@include('shelves.parts.form', ['shelf' => null, 'books' => $books])
|
2019-02-02 06:41:41 -05:00
|
|
|
</form>
|
2019-08-25 10:44:51 -04:00
|
|
|
</main>
|
2018-08-27 09:18:09 -04:00
|
|
|
|
2019-02-02 06:41:41 -05:00
|
|
|
</div>
|
2018-08-27 09:18:09 -04:00
|
|
|
|
|
|
|
@stop
|