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('body')
|
2016-06-11 16:04:18 -04:00
|
|
|
|
2018-04-14 11:23:16 -04:00
|
|
|
<div class="container small">
|
2019-02-02 06:41:41 -05:00
|
|
|
|
|
|
|
<div class="my-l">
|
|
|
|
@include('partials.breadcrumbs', ['crumbs' => [
|
|
|
|
$page->book,
|
|
|
|
$page->chapter,
|
|
|
|
$page,
|
|
|
|
$page->getUrl('/move') => trans('entities.pages_move')
|
|
|
|
]])
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="card content-wrap">
|
|
|
|
<h1 class="list-heading">{{ trans('entities.pages_move') }}</h1>
|
|
|
|
|
|
|
|
<form action="{{ $page->getUrl('/move') }}" method="POST">
|
|
|
|
{!! csrf_field() !!}
|
|
|
|
<input type="hidden" name="_method" value="PUT">
|
|
|
|
|
|
|
|
@include('components.entity-selector', ['name' => 'entity_selection', 'selectorSize' => 'large', 'entityTypes' => 'book,chapter', 'entityPermission' => 'page-create'])
|
|
|
|
|
|
|
|
<div class="form-group text-right">
|
|
|
|
<a href="{{ $page->getUrl() }}" class="button outline">{{ trans('common.cancel') }}</a>
|
|
|
|
<button type="submit" class="button primary">{{ trans('entities.pages_move') }}</button>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
|
2017-08-26 10:41:33 -04:00
|
|
|
</div>
|
2016-06-11 16:04:18 -04:00
|
|
|
</div>
|
|
|
|
|
|
|
|
@stop
|