]> BookStack Code Mirror - bookstack/blob - resources/views/shelves/create.blade.php
1. Fixed translation for Copy and Reply
[bookstack] / resources / views / shelves / create.blade.php
1 @extends('simple-layout')
2
3 @section('toolbar')
4     <div class="col-sm-8 faded">
5         <div class="breadcrumbs">
6             <a href="{{ baseUrl('/shelves') }}" class="text-button">@icon('bookshelf'){{ trans('entities.shelves') }}</a>
7             <span class="sep">&raquo;</span>
8             <a href="{{ baseUrl('/create-shelf') }}" class="text-button">@icon('add'){{ trans('entities.shelves_create') }}</a>
9         </div>
10     </div>
11 @stop
12
13 @section('body')
14
15     <div class="container small">
16         <p>&nbsp;</p>
17         <div class="card">
18             <h3>@icon('add') {{ trans('entities.shelves_create') }}</h3>
19             <div class="body">
20                 <form action="{{ baseUrl("/shelves") }}" method="POST" enctype="multipart/form-data">
21                     @include('shelves/form', ['shelf' => null, 'books' => $books])
22                 </form>
23             </div>
24         </div>
25     </div>
26
27     <p class="margin-top large"><br></p>
28
29     @include('components.image-manager', ['imageType' => 'cover'])
30
31 @stop