2017-08-26 10:41:33 -04:00
|
|
|
@extends('simple-layout')
|
2016-06-11 16:04:18 -04:00
|
|
|
|
2017-08-26 10:41:33 -04:00
|
|
|
@section('toolbar')
|
|
|
|
<div class="col-sm-12 faded">
|
|
|
|
@include('pages._breadcrumbs', ['page' => $page])
|
2016-06-11 16:04:18 -04:00
|
|
|
</div>
|
2017-08-26 10:41:33 -04:00
|
|
|
@stop
|
2016-06-11 16:04:18 -04:00
|
|
|
|
2017-08-26 10:41:33 -04:00
|
|
|
@section('body')
|
2016-06-11 16:04:18 -04:00
|
|
|
|
2018-04-14 11:23:16 -04:00
|
|
|
<div class="container small">
|
2017-08-26 10:41:33 -04:00
|
|
|
<p> </p>
|
|
|
|
<div class="card">
|
2018-02-17 14:49:00 -05:00
|
|
|
<h3>@icon('folder') {{ trans('entities.pages_move') }}</h3>
|
2017-08-26 10:41:33 -04:00
|
|
|
<div class="body">
|
|
|
|
<form action="{{ $page->getUrl('/move') }}" method="POST">
|
|
|
|
{!! csrf_field() !!}
|
|
|
|
<input type="hidden" name="_method" value="PUT">
|
2016-06-12 07:14:14 -04:00
|
|
|
|
2018-04-14 13:47:13 -04:00
|
|
|
@include('components.entity-selector', ['name' => 'entity_selection', 'selectorSize' => 'large', 'entityTypes' => 'book,chapter', 'entityPermission' => 'page-create'])
|
2016-06-12 07:14:14 -04:00
|
|
|
|
2017-08-26 10:41:33 -04:00
|
|
|
<div class="form-group text-right">
|
|
|
|
<a href="{{ $page->getUrl() }}" class="button outline">{{ trans('common.cancel') }}</a>
|
|
|
|
<button type="submit" class="button pos">{{ trans('entities.pages_move') }}</button>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
2016-06-11 16:04:18 -04:00
|
|
|
</div>
|
|
|
|
|
|
|
|
@stop
|