@extends('admin.layout') @section('title', __('admin.settings')) @section('content')
{{-- Header --}}

{{ __('admin.settings_title') }}

{{ __('admin.settings_subtitle') }}

{{-- Success Alert --}} @if(session('success'))
{{ session('success') }}
@endif {{-- Tabs Navigation --}}
@csrf {{-- ============================================================ --}} {{-- GENERAL TAB --}} {{-- ============================================================ --}}
{{-- Site Identity --}}

{{ __('admin.site_identity') }}

{{ __('admin.site_identity_desc') }}

{{-- Branding --}}

{{ __('admin.branding') }}

{{ __('admin.branding_desc') }}

{{-- Logo --}}
@if(!empty($all['site_logo'])) Logo @else

{{ __('admin.no_logo') }}

@endif
{{-- Favicon --}}
@if(!empty($all['site_favicon'])) Favicon @else

{{ __('admin.no_logo') }}

@endif
{{-- OG Image --}}
@if(!empty($all['site_og_image'])) OG Image @else

{{ __('admin.no_logo') }}

@endif
{{-- ============================================================ --}} {{-- CONTACT TAB --}} {{-- ============================================================ --}}

{{ __('admin.contact_info') }}

{{ __('admin.contact_info_desc') }}

{{-- ============================================================ --}} {{-- SOCIAL MEDIA TAB --}} {{-- ============================================================ --}}

{{ __('admin.social_media_links') }}

{{ __('admin.social_media_links_desc') }}

@php $socials = [ ['key' => 'social_instagram', 'label' => 'Instagram', 'icon' => 'fab fa-instagram', 'color' => 'text-pink-500', 'placeholder' => 'https://instagram.com/jeddahnight'], ['key' => 'social_twitter', 'label' => 'X (Twitter)', 'icon' => 'fab fa-x-twitter', 'color' => 'text-gray-900', 'placeholder' => 'https://x.com/jeddahnight'], ['key' => 'social_facebook', 'label' => 'Facebook', 'icon' => 'fab fa-facebook', 'color' => 'text-blue-600', 'placeholder' => 'https://facebook.com/jeddahnight'], ['key' => 'social_tiktok', 'label' => 'TikTok', 'icon' => 'fab fa-tiktok', 'color' => 'text-gray-900', 'placeholder' => 'https://tiktok.com/@jeddahnight'], ['key' => 'social_snapchat', 'label' => 'Snapchat', 'icon' => 'fab fa-snapchat', 'color' => 'text-yellow-400', 'placeholder' => 'https://snapchat.com/add/jeddahnight'], ['key' => 'social_youtube', 'label' => 'YouTube', 'icon' => 'fab fa-youtube', 'color' => 'text-red-600', 'placeholder' => 'https://youtube.com/@jeddahnight'], ['key' => 'social_linkedin', 'label' => 'LinkedIn', 'icon' => 'fab fa-linkedin', 'color' => 'text-blue-700', 'placeholder' => 'https://linkedin.com/company/jeddahnight'], ]; @endphp @foreach($socials as $social)
@endforeach
{{-- ============================================================ --}} {{-- SEO TAB --}} {{-- ============================================================ --}}

{{ __('admin.seo_title') }}

{{ __('admin.seo_desc') }}

{{ __('admin.recommended_chars', ['count' => '50-60']) }}

{{ __('admin.recommended_chars', ['count' => '50-60']) }}

{{ __('admin.recommended_chars', ['count' => '150-160']) }}

{{ __('admin.recommended_chars', ['count' => '150-160']) }}

{{ __('admin.comma_separated') }}

{{-- Analytics --}}

{{ __('admin.analytics_tracking') }}

{{ __('admin.analytics_tracking_desc') }}

{{-- ============================================================ --}} {{-- MOBILE APP TAB --}} {{-- ============================================================ --}}

{{ __('admin.app_store_links') }}

{{ __('admin.app_store_links_desc') }}

{{-- Push Notifications --}}

{{ __('admin.notifications_title') }}

{{ __('admin.onesignal_desc') }}

{{-- ============================================================ --}} {{-- INTEGRATIONS TAB --}} {{-- ============================================================ --}}
{{-- Google Maps --}}

{{ __('admin.google_maps') }}

{{ __('admin.google_maps_desc') }}

{{ __('admin.google_maps_api_key_desc') }}

{{-- Claude AI --}}

{{ __('admin.claude_ai') }}

{{ __('admin.claude_ai_desc') }}

{{-- Google Custom Search --}}

{{ __('admin.google_custom_search') }}

{{ __('admin.google_custom_search_desc') }}

{{-- ============================================================ --}} {{-- ADVANCED TAB --}} {{-- ============================================================ --}}
{{-- Maintenance Mode --}}

{{ __('admin.maintenance_mode') }}

{{ __('admin.maintenance_mode_desc') }}

{{-- Code Injection --}}

{{ __('admin.code_injection') }}

{{ __('admin.code_injection_desc') }}

{{ __('admin.head_code_note') }}

{{ __('admin.footer_code_note') }}

{{-- Add Custom Setting --}}

{{ __('admin.add_custom_setting') }}

{{ __('admin.add_custom_setting_desc') }}

{{-- Raw Settings Viewer --}}

{{ __('admin.all_settings_raw') }}

{{ __('admin.all_settings_raw_desc') }}

@if(count($all) > 0)
@foreach($all as $key => $value) @endforeach
{{ __('admin.key') }} {{ __('admin.value') }}
{{ $key }} {{ Str::limit($value, 80) }}
@else

{{ __('admin.no_settings_yet') }}

@endif
{{-- Sticky Save Button --}}

{{ __('admin.save_note') }}

@endsection ob_start();