mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-11-01 00:22:37 +01:00
0f7b0ad45a
In 'More' menu alongside move. Allows you to move if you have permission to create within the new target parent. Closes #673
45 lines
1.8 KiB
PHP
45 lines
1.8 KiB
PHP
|
|
{{ csrf_field() }}
|
|
<div class="form-group title-input">
|
|
<label for="name">{{ trans('common.name') }}</label>
|
|
@include('form/text', ['name' => 'name'])
|
|
</div>
|
|
|
|
<div class="form-group description-input">
|
|
<label for="description">{{ trans('common.description') }}</label>
|
|
@include('form/textarea', ['name' => 'description'])
|
|
</div>
|
|
|
|
<div class="form-group" collapsible id="logo-control">
|
|
<div class="collapse-title text-primary" collapsible-trigger>
|
|
<label for="user-avatar">{{ trans('common.cover_image') }}</label>
|
|
</div>
|
|
<div class="collapse-content" collapsible-content>
|
|
<p class="small">{{ trans('common.cover_image_description') }}</p>
|
|
|
|
@include('components.image-picker', [
|
|
'resizeHeight' => '512',
|
|
'resizeWidth' => '512',
|
|
'showRemove' => false,
|
|
'defaultImage' => baseUrl('/book_default_cover.png'),
|
|
'currentImage' => isset($model) ? $model->getBookCover() : baseUrl('/book_default_cover.png') ,
|
|
'currentId' => isset($model) && $model->image_id ? $model->image_id : 0,
|
|
'name' => 'image_id',
|
|
'imageClass' => 'cover'
|
|
])
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-group" collapsible id="tags-control">
|
|
<div class="collapse-title text-primary" collapsible-trigger>
|
|
<label for="tag-manager">{{ trans('entities.book_tags') }}</label>
|
|
</div>
|
|
<div class="collapse-content" collapsible-content>
|
|
@include('components.tag-manager', ['entity' => isset($book)?$book:null, 'entityType' => 'chapter'])
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-group text-right">
|
|
<a href="{{ isset($book) ? $book->getUrl() : baseUrl('/books') }}" class="button outline">{{ trans('common.cancel') }}</a>
|
|
<button type="submit" class="button pos">{{ trans('entities.books_save') }}</button>
|
|
</div> |