]> BookStack Code Mirror - bookstack/blob - resources/views/chapters/edit.blade.php
Updated all application urls to allow path prefix.
[bookstack] / resources / views / chapters / edit.blade.php
1 @extends('base')
2
3 @section('content')
4
5     <div class="container small" ng-non-bindable>
6         <h1>Edit Chapter</h1>
7         <form action="{{  $chapter->getUrl() }}" method="POST">
8             <input type="hidden" name="_method" value="PUT">
9             @include('chapters/form', ['model' => $chapter])
10         </form>
11     </div>
12
13 @stop