2017-08-26 09:36:48 -04:00
|
|
|
@extends('simple-layout')
|
2016-06-25 10:31:38 -04:00
|
|
|
|
2017-08-26 09:36:48 -04:00
|
|
|
@section('body')
|
2016-06-25 10:31:38 -04:00
|
|
|
|
2018-04-14 11:23:16 -04:00
|
|
|
<div class="container small">
|
2016-06-25 10:31:38 -04:00
|
|
|
|
2019-02-17 12:52:42 -05:00
|
|
|
<div class="my-s">
|
2019-02-02 06:41:41 -05:00
|
|
|
@include('partials.breadcrumbs', ['crumbs' => [
|
|
|
|
$chapter->book,
|
|
|
|
$chapter,
|
2019-02-17 12:52:42 -05:00
|
|
|
$chapter->getUrl('/move') => [
|
|
|
|
'text' => trans('entities.chapters_move'),
|
|
|
|
'icon' => 'folder',
|
|
|
|
]
|
2019-02-02 06:41:41 -05:00
|
|
|
]])
|
|
|
|
</div>
|
|
|
|
|
2019-08-25 10:44:51 -04:00
|
|
|
<main class="card content-wrap">
|
2019-02-02 06:41:41 -05: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">
|
|
|
|
|
|
|
|
@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>
|
2019-08-25 07:40:04 -04:00
|
|
|
<button type="submit" class="button">{{ trans('entities.chapters_move') }}</button>
|
2019-02-02 06:41:41 -05:00
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
|
2019-08-25 10:44:51 -04:00
|
|
|
</main>
|
2017-08-26 09:36:48 -04:00
|
|
|
|
2016-06-25 10:31:38 -04:00
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
@stop
|