1 <div editor-toolbox class="floating-toolbox">
3 <div class="tabs primary-background-light">
4 <button type="button" toolbox-toggle aria-expanded="false">@icon('caret-left-circle')</button>
5 <button type="button" toolbox-tab-button="tags" title="{{ trans('entities.page_tags') }}" class="active">@icon('tag')</button>
6 @if(userCan('attachment-create-all'))
7 <button type="button" toolbox-tab-button="files" title="{{ trans('entities.attachments') }}">@icon('attach')</button>
9 <button type="button" toolbox-tab-button="templates" title="{{ trans('entities.templates') }}">@icon('template')</button>
12 <div toolbox-tab-content="tags">
13 <h4>{{ trans('entities.page_tags') }}</h4>
15 @include('components.tag-manager', ['entity' => $page, 'entityType' => 'page'])
19 @if(userCan('attachment-create-all'))
20 @include('pages.attachment-manager', ['page' => $page])
23 <div toolbox-tab-content="templates">
24 <h4>{{ trans('entities.templates') }}</h4>
27 @include('pages.template-manager', ['page' => $page, 'templates' => $templates])