@include('admin/shared/select', [
'label' => __('personalization.theme.themename'),
'name' => 'theme_uuid',
'value' => $item->theme_uuid,
'options' => $themes
])
@include('admin/shared/select', [
'label' => __('personalization.sections.fields.url'),
'name' => 'url',
'value' => $item->url,
'options' => $pages
])
@if (!$item->toDTO()->isProtected())
@error('content')
@enderror
@else
{{ __('personalization.sections.show.protected_content') }}
@endif
@include('admin/shared/checkbox', [
'label' => __('personalization.sections.fields.active'),
'name' => 'is_active',
'checked' => $item->is_active,
])