mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
41 lines
1.2 KiB
PHP
41 lines
1.2 KiB
PHP
@extends('simple-layout')
|
|
|
|
@section('body')
|
|
|
|
<div class="container small">
|
|
|
|
<div class="my-s">
|
|
@include('partials.breadcrumbs', ['crumbs' => [
|
|
$chapter->book,
|
|
$chapter,
|
|
$chapter->getUrl('/move') => [
|
|
'text' => trans('entities.chapters_move'),
|
|
'icon' => 'folder',
|
|
]
|
|
]])
|
|
</div>
|
|
|
|
<div class="card content-wrap">
|
|
<h1 class="list-heading">{{ trans('entities.chapters_move') }}</h1>
|
|
|
|
<form action="{{ $chapter->getUrl('/move') }}" method="POST">
|
|
|
|
{!! csrf_field() !!}
|
|
<input type="hidden" name="_method" value="PUT">
|
|
|
|
@include('components.entity-selector', ['name' => 'entity_selection', 'selectorSize' => 'large', 'entityTypes' => 'book', 'entityPermission' => 'chapter-create'])
|
|
|
|
<div class="form-group text-right">
|
|
<a href="{{ $chapter->getUrl() }}" class="button outline">{{ trans('common.cancel') }}</a>
|
|
<button type="submit" class="button primary">{{ trans('entities.chapters_move') }}</button>
|
|
</div>
|
|
</form>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
@stop
|