2021-08-22 13:15:58 +01:00
|
|
|
@extends('layouts.simple')
|
2016-06-25 15:31:38 +01:00
|
|
|
|
2017-08-26 14:36:48 +01:00
|
|
|
@section('body')
|
2016-06-25 15:31:38 +01:00
|
|
|
|
2018-04-14 16:23:16 +01:00
|
|
|
<div class="container small">
|
2016-06-25 15:31:38 +01:00
|
|
|
|
2019-02-17 17:52:42 +00:00
|
|
|
<div class="my-s">
|
2021-08-22 13:15:58 +01:00
|
|
|
@include('entities.breadcrumbs', ['crumbs' => [
|
2019-02-02 11:41:41 +00:00
|
|
|
$chapter->book,
|
|
|
|
$chapter,
|
2019-02-17 17:52:42 +00:00
|
|
|
$chapter->getUrl('/move') => [
|
|
|
|
'text' => trans('entities.chapters_move'),
|
|
|
|
'icon' => 'folder',
|
|
|
|
]
|
2019-02-02 11:41:41 +00:00
|
|
|
]])
|
|
|
|
</div>
|
|
|
|
|
2019-08-25 15:44:51 +01:00
|
|
|
<main class="card content-wrap">
|
2019-02-02 11:41:41 +00:00
|
|
|
<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">
|
|
|
|
|
2021-08-22 13:15:58 +01:00
|
|
|
@include('entities.selector', ['name' => 'entity_selection', 'selectorSize' => 'large', 'entityTypes' => 'book', 'entityPermission' => 'chapter-create'])
|
2019-02-02 11:41:41 +00:00
|
|
|
|
|
|
|
<div class="form-group text-right">
|
|
|
|
<a href="{{ $chapter->getUrl() }}" class="button outline">{{ trans('common.cancel') }}</a>
|
2019-08-25 12:40:04 +01:00
|
|
|
<button type="submit" class="button">{{ trans('entities.chapters_move') }}</button>
|
2019-02-02 11:41:41 +00:00
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
|
2019-08-25 15:44:51 +01:00
|
|
|
</main>
|
2017-08-26 14:36:48 +01:00
|
|
|
|
2016-06-25 15:31:38 +01:00
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
@stop
|