@extends('panel.layout.settings') @section('title', __('Frontend Settings')) @section('titlebar_actions', '') @section('settings')

{{ __('General Settings') }}

{{ __('Frontend Settings') }}

{{ __('Please use comma seperated like; Generator,Chatbot,Assistant') }}

@if ($fSetting->hero_image)
hero image
@endif @if(setting('front_theme') === 'social-media-front')
@endif

{{ __('Floating Button') }}

{{ __('Footer Social Media Settings') }}

@if(setting('front_theme') === 'marketing-bot')

{{ __('Footer Use Cases Settings') }}

@php $defaultUseCaseLinks = [ ['link' => '#', 'title' => 'Collect Feedback'], ['link' => '#', 'title' => 'Product Launches'], ['link' => '#', 'title' => 'Promotions'], ['link' => '#', 'title' => 'Limited Offers'], ['link' => '#', 'title' => 'Reminders'], ['link' => '#', 'title' => 'Events'], ['link' => '#', 'title' => 'Bulk Messages'], ]; $useCaseLinks = json_decode(setting('footer_use_cases_links', ''), true); if (!is_array($useCaseLinks) || empty($useCaseLinks)) { $useCaseLinks = $defaultUseCaseLinks; } @endphp @foreach ($useCaseLinks as $index => $link)
@endforeach

{{ __('Footer Resources Settings') }}

@php $defaultResourceLinks = [ ['link' => '#', 'title' => 'Terms of Services'], ['link' => '#', 'title' => 'Support'], ['link' => '#', 'title' => 'Help Center'], ['link' => '#', 'title' => 'Support'], ['link' => '#', 'title' => 'Privacy Policy'], ['link' => '#', 'title' => 'Blog'], ['link' => '#', 'title' => 'Status'], ]; $resourceLinks = json_decode(setting('footer_resources_links', ''), true); if (!is_array($resourceLinks) || empty($resourceLinks)) { $resourceLinks = $defaultResourceLinks; } @endphp @foreach ($resourceLinks as $index => $link)
@endforeach
@endif

{{ __('Advanced Settings') }}

{{ __('Please provide full URL with http:// or https://') }}

{{ __('Please provide full URL with http:// or https://') }}

{{ __('Please provide full URL with http:// or https://') }}

@endsection @push('script') @endpush