]> BookStack Code Mirror - bookstack/blob - resources/views/chapters/edit.blade.php
Finished migrated from icon-font to SVG
[bookstack] / resources / views / chapters / edit.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 small" ng-non-bindable>
12         <p>&nbsp;</p>
13         <div class="card">
14             <h3>@icon('edit') {{ trans('entities.chapters_edit') }}</h3>
15             <div class="body">
16                 <form action="{{  $chapter->getUrl() }}" method="POST">
17                     <input type="hidden" name="_method" value="PUT">
18                     @include('chapters/form', ['model' => $chapter])
19                 </form>
20             </div>
21         </div>
22     </div>
23
24 @stop