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