2015-07-12 16:31:15 -04:00
|
|
|
@extends('base')
|
|
|
|
|
|
|
|
@section('head')
|
2015-07-15 17:55:49 -04:00
|
|
|
<script src="/bower/tinymce-dist/tinymce.jquery.min.js"></script>
|
2015-07-12 16:31:15 -04:00
|
|
|
@stop
|
|
|
|
|
2015-08-31 06:43:28 -04:00
|
|
|
@section('body-class', 'flexbox')
|
|
|
|
|
2015-07-12 16:31:15 -04:00
|
|
|
@section('content')
|
2015-08-31 06:43:28 -04:00
|
|
|
|
|
|
|
<div class="flex-fill flex">
|
|
|
|
<form action="{{$book->getUrl() . '/page'}}" method="POST" class="flex flex-fill">
|
|
|
|
@include('pages/form')
|
|
|
|
@if($chapter)
|
|
|
|
<input type="hidden" name="chapter" value="{{$chapter->id}}">
|
|
|
|
@endif
|
|
|
|
</form>
|
|
|
|
</div>
|
2015-07-16 14:15:22 -04:00
|
|
|
@stop
|
|
|
|
|
|
|
|
@section('bottom')
|
|
|
|
@include('pages/image-manager')
|
2015-08-16 15:11:21 -04:00
|
|
|
<script src="/js/image-manager.js"></script>
|
2015-07-12 16:31:15 -04:00
|
|
|
@stop
|