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

19 lines
511 B
PHP
Raw Normal View History

2015-07-12 20:31:15 +00:00
@extends('base')
@section('head')
2015-12-28 16:16:27 +00:00
<script src="/libs/tinymce/tinymce.min.js?ver=4.3.2"></script>
2015-07-12 20:31:15 +00:00
@stop
2015-08-31 10:43:28 +00:00
@section('body-class', 'flexbox')
2015-07-12 20:31:15 +00:00
@section('content')
<div class="flex-fill flex" ng-non-bindable>
2015-08-31 10:43:28 +00: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 18:38:18 +00:00
@include('partials/image-manager', ['imageType' => 'gallery'])
2015-07-14 21:34:31 +00:00
2015-07-12 20:31:15 +00:00
@stop