]> BookStack Code Mirror - bookstack/blob - resources/views/chapters/move.blade.php
Finished migrated from icon-font to SVG
[bookstack] / resources / views / chapters / move.blade.php
1 @extends('simple-layout')
2
3 @section('toolbar')
4     <div class="col-sm-12 faded">
5         @include('chapters._breadcrumbs', ['chapter' => $chapter])
6     </div>
7 @stop
8
9 @section('body')
10
11     <div class="container">
12
13         <div class="card">
14             <h3>@icon('folder') {{ trans('entities.chapters_move') }}</h3>
15             <div class="body">
16                 <form action="{{ $chapter->getUrl('/move') }}" method="POST">
17                     {!! csrf_field() !!}
18                     <input type="hidden" name="_method" value="PUT">
19
20                     @include('components.entity-selector', ['name' => 'entity_selection', 'selectorSize' => 'large', 'entityTypes' => 'book'])
21
22                     <div class="form-group text-right">
23                         <a href="{{ $chapter->getUrl() }}" class="button outline">{{ trans('common.cancel') }}</a>
24                         <button type="submit" class="button pos">{{ trans('entities.chapters_move') }}</button>
25                     </div>
26                 </form>
27             </div>
28         </div>
29
30
31
32     </div>
33
34 @stop