2015-07-28 03:17:08 +08:00
|
|
|
|
2015-08-09 04:38:11 +08:00
|
|
|
{!! csrf_field() !!}
|
|
|
|
|
2015-07-28 03:17:08 +08:00
|
|
|
<div class="form-group title-input">
|
2016-11-17 21:33:07 +08:00
|
|
|
<label for="name">{{ trans('common.name') }}</label>
|
2015-07-28 03:17:08 +08:00
|
|
|
@include('form/text', ['name' => 'name'])
|
|
|
|
</div>
|
2015-08-09 04:38:11 +08:00
|
|
|
|
2015-07-28 03:17:08 +08:00
|
|
|
<div class="form-group description-input">
|
2016-11-17 21:33:07 +08:00
|
|
|
<label for="description">{{ trans('common.description') }}</label>
|
2015-07-28 03:17:08 +08:00
|
|
|
@include('form/textarea', ['name' => 'description'])
|
|
|
|
</div>
|
2015-08-09 04:38:11 +08:00
|
|
|
|
2018-03-30 21:09:51 +08:00
|
|
|
<div class="form-group" collapsible id="logo-control">
|
|
|
|
<div class="collapse-title text-primary" collapsible-trigger>
|
|
|
|
<label for="user-avatar">{{ trans('entities.chapter_tags') }}</label>
|
|
|
|
</div>
|
|
|
|
<div class="collapse-content" collapsible-content>
|
|
|
|
@include('components.tag-manager', ['entity' => isset($chapter)?$chapter:null, 'entityType' => 'chapter'])
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2017-08-26 21:36:48 +08:00
|
|
|
<div class="form-group text-right">
|
2018-03-25 18:34:42 +08:00
|
|
|
<a href="{{ isset($chapter) ? $chapter->getUrl() : $book->getUrl() }}" class="button outline">{{ trans('common.cancel') }}</a>
|
2016-11-17 21:33:07 +08:00
|
|
|
<button type="submit" class="button pos">{{ trans('entities.chapters_save') }}</button>
|
2015-08-09 04:38:11 +08:00
|
|
|
</div>
|