2015-07-13 04:31:15 +08:00
|
|
|
@extends('base')
|
|
|
|
|
|
|
|
@section('head')
|
2016-09-07 02:27:21 +08:00
|
|
|
<script src="{{ baseUrl('/libs/tinymce/tinymce.min.js?ver=4.4.3') }}"></script>
|
2015-07-13 04:31:15 +08:00
|
|
|
@stop
|
|
|
|
|
2015-08-31 18:43:28 +08:00
|
|
|
@section('body-class', 'flexbox')
|
|
|
|
|
2015-07-13 04:31:15 +08:00
|
|
|
@section('content')
|
|
|
|
|
2016-03-10 06:32:07 +08:00
|
|
|
<div class="flex-fill flex">
|
2016-08-14 19:29:35 +08:00
|
|
|
<form action="{{ $page->getUrl() }}" autocomplete="off" data-page-id="{{ $page->id }}" method="POST" class="flex flex-fill">
|
2016-05-13 06:12:05 +08:00
|
|
|
@if(!isset($isDraft))
|
|
|
|
<input type="hidden" name="_method" value="PUT">
|
|
|
|
@endif
|
2015-08-31 18:43:28 +08:00
|
|
|
@include('pages/form', ['model' => $page])
|
2016-05-15 17:39:17 +08:00
|
|
|
@include('pages/form-toolbox')
|
2015-08-31 18:43:28 +08:00
|
|
|
</form>
|
2016-05-13 06:12:05 +08:00
|
|
|
|
|
|
|
|
2015-08-31 18:43:28 +08:00
|
|
|
</div>
|
2016-09-03 01:54:26 +08:00
|
|
|
|
2016-03-13 21:30:47 +08:00
|
|
|
@include('partials/image-manager', ['imageType' => 'gallery', 'uploaded_to' => $page->id])
|
2016-09-03 01:54:26 +08:00
|
|
|
@include('partials/entity-selector-popup')
|
2016-08-31 03:05:59 +08:00
|
|
|
|
2015-07-13 04:31:15 +08:00
|
|
|
@stop
|