@extends('admin.settings.sidebar') @section('title', __('personalization.theme.title')) @section('setting')

{{ __('personalization.theme.title') }}

{{ __('personalization.theme.description') }}

{{ __('personalization.theme.current_theme') }} : {{ $currentTheme->name }}

@include('admin/shared/input', ['name' => 'theme_home_title', 'label' => __('personalization.home.fields.theme_home_title'), 'value' => setting('theme_home_title', setting('app.name')), 'translatable' => setting_is_saved('theme_home_title')])
@include('admin/shared/input', ['name' => 'theme_home_subtitle', 'label' => __('personalization.home.fields.theme_home_subtitle'), 'value' => setting('theme_home_subtitle', "Hébergeur français de qualité utilisant la nouvelle version Next Gen de CLIENTXCMS."), 'translatable' => setting_is_saved('theme_home_subtitle')])
@include('admin/shared/file', ['name' => 'theme_home_image', 'label' => __('personalization.home.fields.theme_home_image'), 'canRemove' => true])
@include('admin/shared/select', ['name' => 'theme_switch_mode', 'label' => __('personalization.theme.fields.theme_switch_mode.title'), 'value' => setting('theme_switch_mode'), 'options' => $modes]) @include('admin/shared/checkbox', ['name' => 'theme_header_logo', 'label' => __('personalization.theme.fields.theme_header_logo'), 'checked' => setting('theme_header_logo')])

@csrf {!! $configHTML !!}

@include('admin/translations/settings-overlay', ['keys' => [ 'theme_home_title' => 'text', 'theme_home_subtitle' => 'text', 'theme_home_title_meta' => 'text', ], 'class' => \App\Models\Admin\Setting::class, 'id' => 0]) @endsection