mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
35 lines
1.1 KiB
PHP
35 lines
1.1 KiB
PHP
@extends('simple-layout')
|
|
|
|
@section('body')
|
|
|
|
<div class="container small">
|
|
|
|
<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>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
@stop
|