mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-11-24 01:13:35 +08:00
19 lines
454 B
PHP
19 lines
454 B
PHP
@extends('base')
|
|
|
|
@section('head')
|
|
<script src="/libs/tinymce/tinymce.min.js"></script>
|
|
@stop
|
|
|
|
@section('body-class', 'flexbox')
|
|
|
|
@section('content')
|
|
|
|
<div class="flex-fill flex">
|
|
<form action="{{$page->getUrl()}}" method="POST" class="flex flex-fill">
|
|
<input type="hidden" name="_method" value="PUT">
|
|
@include('pages/form', ['model' => $page])
|
|
</form>
|
|
</div>
|
|
<image-manager></image-manager>
|
|
|
|
@stop |