BossBey File Manager
PHP:
8.2.30
OS:
Linux
User:
imagivibe
Root
/
.
/
app.imagivibe.com
/
resources
/
views
/
default
/
panel
/
admin
/
frontend
📤 Upload
📝 New File
📁 New Folder
Close
Editing: section_settings.blade.php
@extends('panel.layout.settings') @section('title', __('Frontend Section Settings')) @section('titlebar_actions', '') @section('settings') <form id="settings_form" onsubmit="return frontendSectionSettingsSave();" enctype="multipart/form-data" > <div class="row"> <x-form-step step="1" label="{{ __('Features Section') }}" > </x-form-step> <div class="col-md-12"> <div class="mb-3"> <label class="form-label">{{ __('Features Section Active') }}</label> <select class="form-select" id="features_active" name="features_active" > <option value="1" {{ $fSectSettings->features_active == 1 ? 'selected' : '' }} > {{ __('Active') }}</option> <option value="0" {{ $fSectSettings->features_active == 0 ? 'selected' : '' }} > {{ __('Passive') }}</option> </select> </div> </div> <div class="col-md-12"> <div class="mb-3"> <label class="form-label">{{ __('Features Title') }}</label> <input class="form-control" id="features_title" type="text" name="features_title" value="{{ $fSectSettings->features_title }}" > </div> </div> <div class="col-md-12"> <div class="mb-3"> <label class="form-label">{{ __('Features Subtitle') }}</label> <input class="form-control" id="features_subtitle" type="text" name="features_subtitle" value="{{ $fSectSettings->features_subtitle }}" > </div> </div> <div class="col-md-12"> <div class="mb-3"> <label class="form-label">{{ __('Features Description') }}</label> <textarea class="form-control" id="features_description" name="features_description" >{{ $fSectSettings->features_description }}</textarea> </div> </div> <div class="col-md-12"> <div class="mb-3"> <label class="form-label">{{ __('Marquee Items') }}</label> <input class="form-control" id="marquee_items" type="text" name="marquee_items" value="{{ $fSectSettings->marquee_items }}" > <x-alert class="mt-2"> <p> {{ __('Please use comma seperated like; Generator,Chatbot,Assistant') }} </p> </x-alert> </div> @if(setting('front_theme') === 'social-media-front') <div class="col-md-12"> <div class="mb-3"> <label class="form-label"> {{ __('Section Title') }} </label> <textarea class="form-control" id="join_the_ranks" name="join_the_ranks" >{!! $fSetting->join_the_ranks !!}</textarea> </div> </div> @endif </div> <x-form-step step="2" label="{{ __('Generators Section') }}" > </x-form-step> <div class="col-md-12"> <div class="mb-3"> <label class="form-label">{{ __('Generators Active') }}</label> <select class="form-select" id="generators_active" name="generators_active" > <option value="1" {{ $fSectSettings->generators_active == 1 ? 'selected' : '' }} > {{ __('Active') }}</option> <option value="0" {{ $fSectSettings->generators_active == 0 ? 'selected' : '' }} > {{ __('Passive') }}</option> </select> </div> <div class="mb-3"> <label class="form-label">{{ __('Generators subtitle') }}</label> <input class="form-control" id="generators_subtitle" type="text" name="generators_subtitle" value="{{ $fSectSettings->generators_subtitle }}" > </div> <div class="mb-3"> <label class="form-label">{{ __('Generators title') }}</label> <input class="form-control" id="generators_title" type="text" name="generators_title" value="{{ $fSectSettings->generators_title }}" > </div> <div class="mb-3"> <label class="form-label">{{ __('Generators description') }}</label> <input class="form-control" id="generators_description" type="text" name="generators_description" value="{{ $fSectSettings->generators_description }}" > </div> </div> <x-form-step step="3" label="{{ __('For Who Section') }}" > </x-form-step> <div class="col-md-12"> <div class="mb-3"> <label class="form-label">{{ __('For Who Section Active') }}</label> <select class="form-select" id="who_is_for_active" name="who_is_for_active" > <option value="1" {{ $fSectSettings->who_is_for_active == 1 ? 'selected' : '' }} > {{ __('Active') }}</option> <option value="0" {{ $fSectSettings->who_is_for_active == 0 ? 'selected' : '' }} > {{ __('Passive') }}</option> </select> </div> </div> @if(setting('front_theme') == 'modern') @include('default.panel.admin.frontend.sections.banner_bottom_texts') @include('default.panel.admin.frontend.sections.advanced_features_section') @include('default.panel.admin.frontend.sections.comparison_section_items') @include('default.panel.admin.frontend.sections.features_marquees') @include('default.panel.admin.frontend.sections.plan_footer_text') @include('default.panel.admin.frontend.sections.footer_items') @endif <x-form-step step="{{ setting('front_theme') == 'modern' ? '9' : '4' }}" label="{{ __('Custom Templates Section') }}" > </x-form-step> <div class="col-md-12"> <div class="mb-3"> <label class="form-label">{{ __('Custom Templates Active') }}</label> <select class="form-select" id="custom_templates_active" name="custom_templates_active" > <option value="1" {{ $fSectSettings->custom_templates_active == 1 ? 'selected' : '' }} > {{ __('Active') }}</option> <option value="0" {{ $fSectSettings->custom_templates_active == 0 ? 'selected' : '' }} > {{ __('Passive') }}</option> </select> </div> </div> <div class="col-md-12"> <div class="mb-3"> <label class="form-label">{{ __('Custom Templates Subtitle One') }}</label> <input class="form-control" id="custom_templates_subtitle_one" type="text" name="custom_templates_subtitle_one" value="{{ $fSectSettings->custom_templates_subtitle_one }}" > </div> </div> <div class="col-md-12"> <div class="mb-3"> <label class="form-label">{{ __('Custom Templates Subtitle Two') }}</label> <input class="form-control" id="custom_templates_subtitle_two" type="text" name="custom_templates_subtitle_two" value="{{ $fSectSettings->custom_templates_subtitle_two }}" > </div> </div> <div class="col-md-12"> <div class="mb-3"> <label class="form-label">{{ __('Custom Templates Title') }}</label> <input class="form-control" id="custom_templates_title" type="text" name="custom_templates_title" value="{{ $fSectSettings->custom_templates_title }}" > </div> </div> <div class="col-md-12"> <div class="mb-3"> <label class="form-label">{{ __('Custom Templates Description') }}</label> <textarea class="form-control" id="custom_templates_description" name="custom_templates_description" >{{ $fSectSettings->custom_templates_description }}</textarea> </div> </div> <div class="col-md-12"> <div class="mb-3"> <label class="form-label">{{ __('Custom Templates Learn More Link') }}</label> <input class="form-control" id="custom_templates_learn_more_link" type="text" name="custom_templates_learn_more_link" value="{{ $fSectSettings->custom_templates_learn_more_link }}" > </div> </div> <div class="col-md-12"> <div class="mb-3"> <label class="form-label">{{ __('Custom Templates Learn More Link URL') }}</label> <input class="form-control" id="custom_templates_learn_more_link_url" type="text" name="custom_templates_learn_more_link_url" value="{{ $fSectSettings->custom_templates_learn_more_link_url }}" > </div> </div> <x-form-step step="{{ setting('front_theme') == 'modern' ? '10' : '5' }}" label="{{ __('Tools Section') }}" > </x-form-step> <div class="col-md-12"> <div class="mb-3"> <label class="form-label">{{ __('Tools Active') }}</label> <select class="form-select" id="tools_active" name="tools_active" > <option value="1" {{ $fSectSettings->tools_active == 1 ? 'selected' : '' }} > {{ __('Active') }}</option> <option value="0" {{ $fSectSettings->tools_active == 0 ? 'selected' : '' }} > {{ __('Passive') }}</option> </select> </div> </div> <div class="col-md-12"> <div class="mb-3"> <label class="form-label">{{ __('Tools Title') }}</label> <input class="form-control" id="tools_title" type="text" name="tools_title" value="{{ $fSectSettings->tools_title }}" > </div> </div> <div class="col-md-12"> <div class="mb-3"> <label class="form-label">{{ __('Tools Subtitle') }}</label> <input class="form-control" id="tools_subtitle" type="text" name="tools_subtitle" value="{{ $fSectSettings->tools_subtitle }}" > </div> </div> <div class="col-md-12"> <div class="mb-3"> <label class="form-label">{{ __('Tools Description') }}</label> <textarea class="form-control" id="tools_description" name="tools_description" >{{ $fSectSettings->tools_description }}</textarea> </div> </div> <x-form-step step="{{ setting('front_theme') == 'modern' ? '11' : '6' }}" label="{{ __('How It Works Section') }}" > </x-form-step> <div class="col-md-12"> <div class="mb-3"> <label class="form-label">{{ __('How It Works Active') }}</label> <select class="form-select" id="how_it_works_active" name="how_it_works_active" > <option value="1" {{ $fSectSettings->how_it_works_active == 1 ? 'selected' : '' }} > {{ __('Active') }}</option> <option value="0" {{ $fSectSettings->how_it_works_active == 0 ? 'selected' : '' }} > {{ __('Passive') }}</option> </select> </div> </div> <div class="col-md-12"> <div class="mb-3"> <label class="form-label">{{ __('How It Works Title') }}</label> <input class="form-control" id="how_it_works_title" type="text" name="how_it_works_title" value="{{ $fSectSettings->how_it_works_title }}" > </div> </div> <div class="col-md-12"> <div class="mb-3"> <label class="form-label">{{ __('How It Works Subtitle') }}</label> <input class="form-control" id="how_it_works_subtitle" type="text" name="how_it_works_subtitle" value="{{ $fSectSettings->how_it_works_subtitle }}" > </div> </div> <div class="col-md-12"> <div class="mb-3"> <label class="form-label">{{ __('How It Works Description') }}</label> <input class="form-control" id="how_it_works_description" type="text" name="how_it_works_description" value="{{ $fSectSettings->how_it_works_description }}" > </div> </div> <div class="col-md-12"> <div class="mb-3"> <label class="form-label">{{ __('How It Works Link') }}</label> <input class="form-control" id="how_it_works_link" type="text" name="how_it_works_link" value="{{ $fSectSettings->how_it_works_link }}" > </div> </div> <div class="col-md-12"> <div class="mb-3"> <label class="form-label">{{ __('How It Works Link Label') }}</label> <input class="form-control" id="how_it_works_link_label" type="text" name="how_it_works_link_label" value="{{ $fSectSettings->how_it_works_link_label }}" > </div> </div> <x-form-step step="{{ setting('front_theme') == 'modern' ? '12' : '7' }}" label="{{ __('Testimonials Section') }}" > </x-form-step> <div class="col-md-12"> <div class="mb-3"> <label class="form-label">{{ __('Testimonials Active') }}</label> <select class="form-select" id="testimonials_active" name="testimonials_active" > <option value="1" {{ $fSectSettings->testimonials_active == 1 ? 'selected' : '' }} > {{ __('Active') }}</option> <option value="0" {{ $fSectSettings->testimonials_active == 0 ? 'selected' : '' }} > {{ __('Passive') }}</option> </select> </div> </div> <div class="col-md-12"> <div class="mb-3"> <label class="form-label">{{ __('Testimonials Title') }}</label> <input class="form-control" id="testimonials_title" type="text" name="testimonials_title" value="{{ $fSectSettings->testimonials_title }}" > </div> </div> <div class="col-md-12"> <div class="mb-3"> <label class="form-label">{{ __('Testimonials Description') }}</label> <input class="form-control" id="testimonials_description" type="text" name="testimonials_description" value="{{ $fSectSettings->testimonials_description }}" > </div> </div> <div class="col-md-12"> <div class="mb-3"> <label class="form-label">{{ __('Testimonials Subtitle One') }}</label> <input class="form-control" id="testimonials_subtitle_one" type="text" name="testimonials_subtitle_one" value="{{ $fSectSettings->testimonials_subtitle_one }}" > </div> </div> @if(setting('front_theme') === 'marketing-bot') <div class="col-md-12"> <div class="mb-3"> <label class="form-label">{{ __('Testimonials Start') }}</label> <input class="form-control" id="testimonials_stars" type="text" name="testimonials_stars" value="{{setting('testimonials_stars', '4.9 stars')}}" > </div> </div> <div class="col-md-12"> <div class="mb-3"> <label class="form-label">{{ __('Testimonials Count') }}</label> <input class="form-control" id="testimonials_count" type="text" name="testimonials_count" value="{{ setting('testimonials_count', 'Over 5000 testimonials') }}" > </div> </div> @endif <div class="col-md-12"> <div class="mb-3"> <label class="form-label">{{ __('Testimonials Subtitle Two') }}</label> <input class="form-control" id="testimonials_subtitle_two" type="text" name="testimonials_subtitle_two" value="{{ $fSectSettings->testimonials_subtitle_two }}" > </div> </div> <x-form-step step="{{ setting('front_theme') == 'modern' ? '13' : '8' }}" label="{{ __('Pricing Section') }}" > </x-form-step> <div class="col-md-12"> <div class="mb-3"> <label class="form-label">{{ __('Pricing Active') }}</label> <select class="form-select" id="pricing_active" name="pricing_active" > <option value="1" {{ $fSectSettings->pricing_active == 1 ? 'selected' : '' }} > {{ __('Active') }}</option> <option value="0" {{ $fSectSettings->pricing_active == 0 ? 'selected' : '' }} > {{ __('Passive') }}</option> </select> </div> </div> <div class="col-md-12"> <div class="mb-3"> <label class="form-label">{{ __('Pricing Title') }}</label> <input class="form-control" id="pricing_title" type="text" name="pricing_title" value="{{ $fSectSettings->pricing_title }}" > </div> </div> <div class="col-md-12"> <div class="mb-3"> <label class="form-label">{{ __('Pricing Subtitle') }}</label> <input class="form-control" id="pricing_subtitle" type="text" name="pricing_subtitle" value="{{ $fSectSettings->pricing_subtitle }}" > </div> </div> <div class="col-md-12"> <div class="mb-3"> <label class="form-label">{{ __('Pricing Description') }}</label> <textarea class="form-control" id="pricing_description" name="pricing_description" >{{ $fSectSettings->pricing_description }}</textarea> </div> </div> <div class="col-md-12"> <div class="mb-3"> <label class="form-label">{{ __('Pricing Save Percent') }}</label> <input class="form-control" id="pricing_save_percent" type="text" name="pricing_save_percent" value="{{ $fSectSettings->pricing_save_percent }}" > </div> </div> <x-form-step step="{{ setting('front_theme') == 'modern' ? '14' : '9' }}" label="{{ __('FAQ Section') }}" > </x-form-step> <div class="col-md-12"> <div class="mb-3"> <label class="form-label">{{ __('FAQ Active') }}</label> <select class="form-select" id="faq_active" name="faq_active" > <option value="1" {{ $fSectSettings->faq_active == 1 ? 'selected' : '' }} > {{ __('Active') }}</option> <option value="0" {{ $fSectSettings->faq_active == 0 ? 'selected' : '' }} > {{ __('Passive') }}</option> </select> </div> </div> <div class="col-md-12"> <div class="mb-3"> <label class="form-label">{{ __('FAQ Title') }}</label> <input class="form-control" id="faq_title" type="text" name="faq_title" value="{{ $fSectSettings->faq_title }}" > </div> </div> <div class="col-md-12"> <div class="mb-3"> <label class="form-label">{{ __('FAQ Subtitle') }}</label> <input class="form-control" id="faq_subtitle" type="text" name="faq_subtitle" value="{{ $fSectSettings->faq_subtitle }}" > </div> </div> <div class="col-md-12"> <div class="mb-3"> <label class="form-label">{{ __('FAQ Text One') }}</label> <input class="form-control" id="faq_text_one" type="text" name="faq_text_one" value="{{ $fSectSettings->faq_text_one }}" > </div> </div> <div class="col-md-12"> <div class="mb-3"> <label class="form-label">{{ __('FAQ Text Two') }}</label> <input class="form-control" id="faq_text_two" type="text" name="faq_text_two" value="{{ $fSectSettings->faq_text_two }}" > </div> </div> <x-form-step step="{{ setting('front_theme') == 'modern' ? '15' : '10' }}" label="{{ __('Blog Section') }}" > </x-form-step> <div class="col-md-12"> <div class="mb-3"> <label class="form-label">{{ __('Blog Active') }}</label> <select class="form-select" id="blog_active" name="blog_active" > <option value="1" {{ $fSectSettings->blog_active == 1 ? 'selected' : '' }} > {{ __('Active') }}</option> <option value="0" {{ $fSectSettings->blog_active == 0 ? 'selected' : '' }} > {{ __('Passive') }}</option> </select> </div> </div> <div class="col-md-12"> <div class="mb-3"> <label class="form-label">{{ __('Blog Title') }}</label> <input class="form-control" id="blog_title" type="text" name="blog_title" value="{{ $fSectSettings->blog_title }}" > </div> </div> <div class="col-md-12"> <div class="mb-3"> <label class="form-label">{{ __('Blog Subtitle') }}</label> <input class="form-control" id="blog_subtitle" type="text" name="blog_subtitle" value="{{ $fSectSettings->blog_subtitle }}" > </div> </div> <div class="col-md-12"> <div class="mb-3"> <label class="form-label">{{ __('Blog Posts Per Page') }}</label> <input class="form-control" id="blog_posts_per_page" type="number" name="blog_posts_per_page" min="1" max="6" value="{{ $fSectSettings->blog_posts_per_page }}" > </div> </div> <div class="col-md-12"> <div class="mb-3"> <label class="form-label">{{ __('Blog Button Text') }}</label> <input class="form-control" id="blog_button_text" type="text" name="blog_button_text" value="{{ $fSectSettings->blog_button_text }}" > </div> </div> <h5 class="mb-[25px] text-[16px]">{{ __('Blog Archive Options') }}</h5> <div class="col-md-12"> <div class="mb-3"> <label class="form-label">{{ __('Blog Title') }}</label> <input class="form-control" id="blog_a_title" type="text" name="blog_a_title" value="{{ $fSectSettings->blog_a_title }}" > </div> </div> <div class="col-md-12"> <div class="mb-3"> <label class="form-label">{{ __('Blog Subtitle') }}</label> <input class="form-control" id="blog_a_subtitle" type="text" name="blog_a_subtitle" value="{{ $fSectSettings->blog_a_title }}" > </div> </div> <div class="col-md-12"> <div class="mb-3"> <label class="form-label">{{ __('Blog Description') }}</label> <input class="form-control" id="blog_a_description" type="text" name="blog_a_description" value="{{ $fSectSettings->blog_a_description }}" > </div> </div> <div class="col-md-12"> <div class="mb-3"> <label class="form-label">{{ __('Blog Posts Per Page') }}</label> <input class="form-control" id="blog_a_posts_per_page" type="number" name="blog_a_posts_per_page" min="1" max="12" value="{{ $fSectSettings->blog_a_posts_per_page }}" > </div> </div> @if(setting('front_theme') === 'marketing-bot') @includeFirst(['marketing-bot.partials.frontend_settings', 'vendor.empty']) @endif </div> <button class="btn btn-primary w-full" id="settings_button" form="settings_form" > {{ __('Save') }} </button> </form> @endsection @push('script') <script src="{{ custom_theme_url('/assets/js/panel/settings.js?v='. time()) }}"></script> <script src="{{ custom_theme_url('/assets/libs/ace/src-min-noconflict/ace.js') }}" type="text/javascript" charset="utf-8" ></script> <style type="text/css" media="screen" > .ace_editor { min-height: 200px; } </style> <script> var join_the_ranks = ace.edit("join_the_ranks"); join_the_ranks.session.setMode("ace/mode/html"); </script> @endpush
Save
Cancel