]> BookStack Code Mirror - bookstack/blob - resources/views/pages/edit.blade.php
Found the source of the issue, not sure how to fix
[bookstack] / resources / views / pages / edit.blade.php
1 @extends('base')
2
3 @section('head')
4     <script src="/libs/tinymce/tinymce.min.js?ver=4.3.2"></script>
5 @stop
6
7 @section('body-class', 'flexbox')
8
9 @section('content')
10
11     <div class="flex-fill flex" ng-non-bindable>
12         <form action="{{$page->getUrl()}}" method="POST" class="flex flex-fill">
13             <input type="hidden" name="_method" value="PUT">
14             @include('pages/form', ['model' => $page])
15         </form>
16     </div>
17     @include('partials/image-manager', ['imageType' => 'gallery'])
18
19 @stop