]> BookStack Code Mirror - bookstack/blob - resources/views/books/delete.blade.php
Major permission naming refactor and database migration cleanup
[bookstack] / resources / views / books / delete.blade.php
1 @extends('base')
2
3 @section('content')
4
5     <div class="container small" ng-non-bindable>
6         <h1>Delete Book</h1>
7         <p>This will delete the book with the name '{{$book->name}}', All pages and chapters will be removed.</p>
8         <p class="text-neg">Are you sure you want to delete this book?</p>
9
10         <form action="{{$book->getUrl()}}" method="POST">
11             {!! csrf_field() !!}
12             <input type="hidden" name="_method" value="DELETE">
13             <a href="{{$book->getUrl()}}" class="button">Cancel</a>
14             <button type="submit" class="button neg">Confirm</button>
15         </form>
16     </div>
17
18 @stop