@extends('layouts.portal') @section('title', $sectionTitle . ' — Settings — Abu Dhabi Auto Care') @section('content')
Dashboard / Dedicated Settings / {{ $sectionTitle }}

{{ $sectionTitle }}

Customize operational parameters, workshop rules, front-end video player, and SEO metadata.

Module: {{ $dbModule }}
@foreach($allSections as $secKey => $secName) @if($secKey === 'general') @elseif($secKey === 'services-video') @elseif($secKey === 'orders') @elseif($secKey === 'seo') @elseif($secKey === 'notifications') @elseif($secKey === 'working-hours') @elseif($secKey === 'pricing') @else @endif {{ $secName }} @endforeach

{{ $sectionTitle }} Form

All updates are persisted directly to the active system cache.

Live Auto-Sync
@csrf
@forelse($settings as $setting)
@if($setting->description)

{{ $setting->description }}

@endif key: {{ $setting->key }}
@if($setting->type === 'boolean') @elseif($setting->type === 'textarea') @elseif($setting->type === 'number') @elseif($setting->key === 'default_theme') @elseif($setting->key === 'site_logo')
Or upload new logo file:
@if($setting->value)
Logo preview
@endif
@elseif($setting->key === 'site_favicon')
Or upload new favicon file:
@if($setting->value)
Favicon preview
@endif
@elseif($setting->key === 'service_video_ratio') @elseif($setting->key === 'service_video_speed') @else @endif
@empty
No custom parameters found for this module.
@endforelse
Target Module: {{ $dbModule }}
@if($currentSection === 'general')

Hero & Theme Appearance

Customize front-end hero photography, image position, overlay opacity, and default site themes.

Appearance & Hero Section Hero titles, CTA links & overlay styling
@if(auth()->user()->isSuperAdmin())

Team Roles & Super Admin

Super

Assign workshop technician credentials, staff access, and administrative privileges.

Manage Team & Roles Technicians, workshop admins & clients
@endif

Logo Variations & Branding

Main Logo: @if(\App\Models\Setting::get('site_logo')) Custom Uploaded @else Default SVG Mark @endif
Favicon: @if(\App\Models\Setting::get('site_favicon')) Configured @else Default Icon @endif
Default Theme: {{ \App\Models\Setting::get('default_theme', 'dark') }}

Footer & CTA Status

Primary CTA: {{ \App\Models\Setting::get('footer_cta_title', 'Book Workshop Visit Now') }} ➔ {{ \App\Models\Setting::get('footer_cta_url', '/book-service') }}
Footer Tagline:

{{ \App\Models\Setting::get('footer_tagline', 'Care in every detail. Your automotive workshop in Abu Dhabi.') }}

@elseif($currentSection === 'services-video')

Video Showcase Live Engine

Services Player

This controller engine governs the video showcase displayed on the public /services catalog.

Managed Aspect Ratio: {{ \App\Models\Setting::get('service_video_ratio', '16/9') }}
Playback Speed: {{ \App\Models\Setting::get('service_video_speed', '1.0') }}x
Muted Autoplay: {{ \App\Models\Setting::get('service_video_muted', '1') == '1' ? 'Muted (Browsers Allow Autoplay)' : 'Unmuted' }}
Poster Preview: German Booth Spec
@elseif($currentSection === 'seo')

Google Snippet Simulator

SERP Preview

Live rendering of how Abu Dhabi Auto Care appears in Google UAE search results:

AD https://abudhabiautocare.ae
{{ \App\Models\Setting::get('meta_title_default', 'Car Painting & Auto Repair Abu Dhabi | Abu Dhabi Auto Care') }}
{{ \App\Models\Setting::get('meta_description_default', 'Professional car painting, body repair, mechanical repair, AC service, detailing and free car pickup and drop in Abu Dhabi. WhatsApp +971 54 514 3060 for a free quote.') }}
★★★★★ Rating: {{ \App\Models\Setting::get('google_rating_value', '4.9') }} ({{ \App\Models\Setting::get('google_review_count', '184') }} verified reviews)
@elseif($currentSection === 'notifications')

WhatsApp Dispatch Hub

Live API Link

When status changes or bookings arrive, preformatted messages trigger for clients with order details.

Target WhatsApp Hotline:
{{ \App\Models\Setting::get('whatsapp', '+971 54 514 3060') }}

Direct click-to-chat links with prefilled vehicle plate and order code are embedded in confirmation pages and admin status changers.

@elseif($currentSection === 'orders')

Pickup Logistics

Free Recovery
Free Pickup Across UAE: Active
Designated Coverage: Mussafah M11 & Abu Dhabi
Default Deposit: {{ \App\Models\Setting::get('default_deposit_percent', '25') }}%
@elseif($currentSection === 'pricing')

Pricing Compliance

UAE Tax Laws
Standard UAE VAT: {{ \App\Models\Setting::get('vat_percent', '5') }}%
Max Discount Limit: {{ \App\Models\Setting::get('max_discount_percent', '10') }}%
Sedan Promo Campaign: AED 1,299 Starting
@elseif($currentSection === 'working-hours')

Workshop Operation Matrix

Mussafah Bay
Active Days: {{ \App\Models\Setting::get('work_days', 'Saturday – Thursday') }}
Shift Timings: {{ \App\Models\Setting::get('opening_time', '08:00 AM') }} – {{ \App\Models\Setting::get('closing_time', '08:00 PM') }}
Friday Protocol: {{ \App\Models\Setting::get('friday_status', 'Closed / Emergency on Request') }}
@else

Mussafah M11 Facility

Verified Workshop

Facility coordinates and direct hotline info synchronized across website header, footer, booking forms, and invoices.

Physical Facility:
Mussafah M11, Abu Dhabi, UAE
Direct WhatsApp Hotline:
+971 54 514 3060
@endif

Other Dedicated Settings

@foreach($allSections as $key => $title) @if($key !== $currentSection) {{ $title }} @endif @endforeach
@endsection