2023-12-17 15:02:15 +00:00
|
|
|
@push('head')
|
|
|
|
<script src="{{ versioned_asset('libs/tinymce/tinymce.min.js') }}" nonce="{{ $cspNonce }}"></script>
|
|
|
|
@endpush
|
2015-07-27 20:17:08 +01:00
|
|
|
|
2023-12-17 15:02:15 +00:00
|
|
|
{{ csrf_field() }}
|
2015-07-27 20:17:08 +01:00
|
|
|
<div class="form-group title-input">
|
2016-11-17 13:33:07 +00:00
|
|
|
<label for="name">{{ trans('common.name') }}</label>
|
2021-05-26 15:25:23 +01:00
|
|
|
@include('form.text', ['name' => 'name', 'autofocus' => true])
|
2015-07-27 20:17:08 +01:00
|
|
|
</div>
|
2015-08-08 21:38:11 +01:00
|
|
|
|
2015-07-27 20:17:08 +01:00
|
|
|
<div class="form-group description-input">
|
2023-12-17 15:02:15 +00:00
|
|
|
<label for="description_html">{{ trans('common.description') }}</label>
|
|
|
|
@include('form.description-html-input')
|
2015-07-27 20:17:08 +01:00
|
|
|
</div>
|
2015-08-08 21:38:11 +01:00
|
|
|
|
2022-11-15 16:04:46 +00:00
|
|
|
<div class="form-group collapsible" component="collapsible" id="logo-control">
|
2023-01-28 16:06:11 +00:00
|
|
|
<button refs="collapsible@trigger" type="button" class="collapse-title text-link" aria-expanded="false">
|
2019-08-25 15:44:51 +01:00
|
|
|
<label for="tags">{{ trans('entities.chapter_tags') }}</label>
|
|
|
|
</button>
|
2022-11-15 16:04:46 +00:00
|
|
|
<div refs="collapsible@content" class="collapse-content">
|
2021-08-22 13:15:58 +01:00
|
|
|
@include('entities.tag-manager', ['entity' => $chapter ?? null])
|
2018-03-30 14:09:51 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2017-08-26 14:36:48 +01:00
|
|
|
<div class="form-group text-right">
|
2018-03-25 11:34:42 +01:00
|
|
|
<a href="{{ isset($chapter) ? $chapter->getUrl() : $book->getUrl() }}" class="button outline">{{ trans('common.cancel') }}</a>
|
2019-08-25 12:40:04 +01:00
|
|
|
<button type="submit" class="button">{{ trans('entities.chapters_save') }}</button>
|
2015-08-08 21:38:11 +01:00
|
|
|
</div>
|
2023-12-17 15:02:15 +00:00
|
|
|
|
2023-12-19 12:09:57 +00:00
|
|
|
@include('entities.selector-popup')
|
2023-12-17 15:02:15 +00:00
|
|
|
@include('form.editor-translations')
|