mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-11-24 01:40:43 +08:00
19 lines
495 B
PHP
19 lines
495 B
PHP
@extends('base')
|
|
|
|
@section('head')
|
|
<script src="/libs/tinymce/tinymce.min.js?ver=4.3.2"></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>
|
|
@include('partials/image-manager', ['imageType' => 'gallery'])
|
|
|
|
@stop |