2017-08-26 21:36:48 +08:00
|
|
|
@extends('simple-layout')
|
2016-06-25 22:31:38 +08:00
|
|
|
|
2017-08-26 21:36:48 +08:00
|
|
|
@section('toolbar')
|
|
|
|
<div class="col-sm-12 faded">
|
|
|
|
@include('chapters._breadcrumbs', ['chapter' => $chapter])
|
2016-06-25 22:31:38 +08:00
|
|
|
</div>
|
2017-08-26 21:36:48 +08:00
|
|
|
@stop
|
|
|
|
|
|
|
|
@section('body')
|
2016-06-25 22:31:38 +08:00
|
|
|
|
2018-04-14 23:23:16 +08:00
|
|
|
<div class="container small">
|
2016-06-25 22:31:38 +08:00
|
|
|
|
2017-08-26 21:36:48 +08:00
|
|
|
<div class="card">
|
2018-02-18 03:49:00 +08:00
|
|
|
<h3>@icon('folder') {{ trans('entities.chapters_move') }}</h3>
|
2017-08-26 21:36:48 +08:00
|
|
|
<div class="body">
|
|
|
|
<form action="{{ $chapter->getUrl('/move') }}" method="POST">
|
|
|
|
{!! csrf_field() !!}
|
|
|
|
<input type="hidden" name="_method" value="PUT">
|
|
|
|
|
2018-04-15 01:47:13 +08:00
|
|
|
@include('components.entity-selector', ['name' => 'entity_selection', 'selectorSize' => 'large', 'entityTypes' => 'book', 'entityPermission' => 'chapter-create'])
|
2017-08-26 21:36:48 +08:00
|
|
|
|
|
|
|
<div class="form-group text-right">
|
|
|
|
<a href="{{ $chapter->getUrl() }}" class="button outline">{{ trans('common.cancel') }}</a>
|
|
|
|
<button type="submit" class="button pos">{{ trans('entities.chapters_move') }}</button>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2016-06-25 22:31:38 +08:00
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
@stop
|