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