{!! Form::label('_active_theme','Active Theme') !!} {!! Form::select('_active_theme' ,available_themes(), optional($site_setting)['_active_theme'] ?? 'basic' , ['class' => 'form-control','placeholder' => 'Select','required'=>'true']) !!}
{!! Form::label('_blog_layout','Blog Layout') !!} {!! Form::select('_blog_layout' ,blog_layouts(), optional($site_setting)['_blog_layout'] ?? 'blog_basic' , ['class' => 'form-control','placeholder' => 'Select','required'=>'true']) !!}
{{--

Banners

--}} {{--
--}} {{-- {!! Form::label('banner_width','Width*') !!}--}} {{-- {!! Form::text('banner_width' ,optional($site_setting)['banner_width'] ?? '' , ['class' => 'form-control','placeholder' => 'Width','required'=>'true']) !!}--}} {{--
--}} {{--
--}} {{-- {!! Form::label('banner_height','Height*') !!}--}} {{-- {!! Form::text('banner_height' , optional($site_setting)['banner_height'] ?? '' , ['class' => 'form-control','placeholder' => 'Height','required'=>'true']) !!}--}} {{--
--}} {{--
--}} {{-- {!! Form::label('delay','Delay (in seconds):') !!}--}} {{-- {!! Form::number('delay' , optional($site_setting)['delay'] ?? 0 , ['class' => 'form-control','placeholder' => 'Delay','maxlength' => 2,'required'=>'true']) !!}--}} {{--
--}} {{--
--}} {{-- {!! Form::label('effect','Effect') !!}--}} {{-- {!! Form::select('effect' , $effects ,optional($site_setting)['effect'] ?? '', ['class' => 'form-control']) !!}--}} {{--
--}} {{--
--}} {{-- {!! Form::label('background_color','Background Color:') !!}--}} {{-- {!! Form::text('background_color' , optional($site_setting)['background_color'] ?? '' , ['class' => 'form-control','placeholder' => 'Background Color','maxlength' => 5,'required'=>'true']) !!}--}} {{--
--}} {{--
--}} {{-- {{ Form::checkbox('hide_scroller',1, optional($site_setting)['hide_scroller'] ?? 0) }}--}} {{-- {!! Form::label('hide_scroller','Hide Scroller') !!}--}} {{--
--}} {{--
--}} {{-- {{ Form::checkbox('hide_navigation_arrows',1, optional($site_setting)['hide_navigation_arrows'] ?? 0) }}--}} {{-- {!! Form::label('hide_navigation_arrows','Hide Navigation Arrows') !!}--}} {{--
--}} {{--
--}} {{-- {{ Form::checkbox('disable_fade_out_banner',1, optional($site_setting)['disable_fade_out_banner'] ?? 0) }}--}} {{-- {!! Form::label('disable_fade_out_banner','Disable Banner Fade-out') !!}--}} {{--
--}} {{--
--}} {{-- {{ Form::checkbox('banner_sidebar_link_target',1, optional($site_setting)['banner_sidebar_link_target'] ?? 0) }}--}} {{-- {!! Form::label('banner_sidebar_link_target','Open Banner & Sidebar Links in a New Window') !!}--}} {{--
--}}
{{ Form::checkbox('disable_profile_update',1, optional($site_setting)['disable_profile_update'] ?? 0) }} {!! Form::label('disable_profile_update','Disable User Profile Update') !!}
{{ Form::checkbox('hide_header_footer_iframe',1, optional($site_setting)['hide_header_footer_iframe'] ?? 0) }} {!! Form::label('hide_header_footer_iframe','Hide header and footer in iFrame') !!}
{{ Form::checkbox('_enrollment_one_page_checkout',1, optional($site_setting)['_enrollment_one_page_checkout'] ?? 0) }} {!! Form::label('_enrollment_one_page_checkout','Enable One page checkout Enrollment?') !!}
{{--

Sidebar Images

--}} {{--
--}} {{-- {!! Form::label('sidebar_image_width','Width*') !!}--}} {{-- {!! Form::text('sidebar_image_width' , optional($site_setting)['sidebar_image_width'] ?? '' , ['class' => 'form-control','placeholder' => 'Width','required'=>'true']) !!}--}} {{--
--}}

Sale Page

{!! Form::label('title','Title:') !!} {!! Form::text('title' , optional($site_setting)['title'] ?? '' , ['class' => 'form-control','placeholder' => 'Title','required'=>'true']) !!}
{!! Form::label('slug','Slug:') !!} {!! Form::text('slug' ,optional($site_setting)['slug'] ?? '' , ['class' => 'form-control','placeholder' => 'Slug','required'=>'true']) !!}
{!! Form::label('meta_description','Meta Description:') !!} {!! Form::text('meta_description' , optional($site_setting)['meta_description'] ??'' , ['class' => 'form-control','placeholder' => 'Meta Description','required'=>'true']) !!}
{!! Form::label('_timezone','Timezone') !!} {!! Form::select('_timezone', \App\Helpers\Date\DateTimeHelper::timezones(), websiteTimeZone(), ['class' => 'form-control']) !!}
{{--

Other

--}} {{--
--}} {{-- {{ Form::checkbox('images_alt_tags',1, optional($site_setting)['images_alt_tags'] ?? 0) }}--}} {{-- {!! Form::label('images_alt_tags','Images - Alt Tags') !!}--}} {{--
--}} {{--
--}} {{-- {{ Form::checkbox('slideshow_fixed_width',1, optional($site_setting)['slideshow_fixed_width'] ?? 0) }}--}} {{-- {!! Form::label('slideshow_fixed_width','Fixed-width Slideshow') !!}--}} {{--
--}} {{--
--}} {{-- {{ Form::checkbox('slideshow_categories',1, optional($site_setting)['slideshow_categories'] ?? 0) }}--}} {{-- {!! Form::label('slideshow_categories','Slideshow w/ Categories') !!}--}} {{--
--}} {{--
--}} {{-- {{ Form::checkbox('left_hand_side_sidebar',1, optional($site_setting)['left_hand_side_sidebar'] ?? 0) }}--}} {{-- {!! Form::label('left_hand_side_sidebar','Left-hand-side Sidebar') !!}--}} {{--
--}} {{--
--}} {{-- {{ Form::checkbox('dropdown_hover',1, optional($site_setting)['dropdown_hover'] ?? 0) }}--}} {{-- {!! Form::label('dropdown_hover','Dropdown Hover') !!}--}} {{--
--}}

Debug Request Logs

{{ Form::checkbox('debug_requests_calculate',1, optional($site_setting)['debug_requests_calculate'] ?? 0) }} {!! Form::label('debug_requests_calculate','Log Order Calculate Requests') !!}
{{ Form::checkbox('debug_requests_order',1, optional($site_setting)['debug_requests_order'] ?? 0) }} {!! Form::label('debug_requests_order','Log Order Requests') !!}
{{ Form::checkbox('debug_requests_enrollment',1, optional($site_setting)['debug_requests_enrollment'] ?? 0) }} {!! Form::label('debug_requests_enrollment','Log Enrollment Requests') !!}
{!! Form::label('log_requests','Log Requests:') !!} {!! Form::textarea('log_requests' , optional($site_setting)['log_requests'] ?? '' , ['rows' => 3,'class' => 'form-control','placeholder' => '/customers']) !!}
@if(!SiteSettingFind('_is_site_live',0) && config('app.stage') == false)
{{ Form::checkbox('hide_website_search',1, optional($site_setting)['hide_website_search'] ?? 1) }} {!! Form::label('hide_website_search','Hide website from search') !!}
@endif
{{ Form::checkbox('_menu_setting_enable',1, optional($site_setting)['_menu_setting_enable'] ?? 0) }} {!! Form::label('_menu_setting_enable','Enable menu settings') !!}

Sitemap