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