]> BookStack Code Mirror - bookstack/blob - resources/views/shelves/create.blade.php
respective book and chapter structure added.
[bookstack] / resources / views / shelves / create.blade.php
1 @extends('layouts.simple')
2
3 @section('body')
4
5     <div class="container small">
6
7         <div class="my-s">
8             @include('entities.breadcrumbs', ['crumbs' => [
9                 '/shelves' => [
10                     'text' => trans('entities.shelves'),
11                     'icon' => 'bookshelf',
12                 ],
13                 '/create-shelf' => [
14                     'text' => trans('entities.shelves_create'),
15                     'icon' => 'add',
16                 ]
17             ]])
18         </div>
19
20         <main class="card content-wrap">
21             <h1 class="list-heading">{{ trans('entities.shelves_create') }}</h1>
22             <form action="{{ url("/shelves") }}" method="POST" enctype="multipart/form-data">
23                 @include('shelves.parts.form', ['shelf' => null, 'books' => $books])
24             </form>
25         </main>
26
27     </div>
28
29 @stop