BookStack/resources/views/pages/edit.blade.php

19 lines
511 B
PHP
Raw Normal View History

2015-07-12 16:31:15 -04:00
@extends('base')
@section('head')
2015-12-28 11:16:27 -05:00
<script src="/libs/tinymce/tinymce.min.js?ver=4.3.2"></script>
2015-07-12 16:31:15 -04:00
@stop
2015-08-31 06:43:28 -04:00
@section('body-class', 'flexbox')
2015-07-12 16:31:15 -04:00
@section('content')
<div class="flex-fill flex" ng-non-bindable>
2015-08-31 06:43:28 -04:00
<form action="{{$page->getUrl()}}" method="POST" class="flex flex-fill">
<input type="hidden" name="_method" value="PUT">
@include('pages/form', ['model' => $page])
</form>
</div>
2015-12-30 13:38:18 -05:00
@include('partials/image-manager', ['imageType' => 'gallery'])
2015-07-14 17:34:31 -04:00
2015-07-12 16:31:15 -04:00
@stop