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

26 lines
746 B
PHP
Raw Normal View History

2015-07-12 20:31:15 +00:00
@extends('base')
@section('head')
<script src="{{ baseUrl('/libs/tinymce/tinymce.min.js?ver=4.4.3') }}"></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">
<form action="{{ $page->getUrl() }}" autocomplete="off" data-page-id="{{ $page->id }}" method="POST" class="flex flex-fill">
2016-05-12 22:12:05 +00:00
@if(!isset($isDraft))
<input type="hidden" name="_method" value="PUT">
@endif
2015-08-31 10:43:28 +00:00
@include('pages/form', ['model' => $page])
@include('pages/form-toolbox')
2015-08-31 10:43:28 +00:00
</form>
2016-05-12 22:12:05 +00:00
2015-08-31 10:43:28 +00:00
</div>
2016-09-02 17:54:26 +00:00
@include('partials/image-manager', ['imageType' => 'gallery', 'uploaded_to' => $page->id])
2016-09-02 17:54:26 +00:00
@include('partials/entity-selector-popup')
2015-07-12 20:31:15 +00:00
@stop