@extends('backend.layouts.master') @section('title', 'Site Settings') @section('content') @php $val = fn ($key, $default = '') => old($key, $settings[$key] ?? $default); $assetUrl = function ($path) { if (!$path) return null; if (str_starts_with($path, 'http')) return $path; return asset(str_starts_with($path, 'uploads/') ? 'storage/'.$path : $path); }; @endphp

Site Settings

@include('backend.partials.alerts')
@csrf @method('PUT')
General / Branding
@if($settings['logo'] ?? null)
Logo
@endif
@if($settings['logo_dark'] ?? null)
Dark Logo
@endif
@if($settings['favicon'] ?? null)
Favicon
@endif
Default Breadcrumb Image

Used on pages that do not have their own breadcrumb/hero image.

@if($settings['default_breadcrumb_image'] ?? null)
Default breadcrumb
@endif
Contact Details
Company Branches

Shown on the Contact Us page. Leave City empty to remove a branch. Enter one phone number per line.

@foreach($branches as $i => $branch)
Branch {{ $i + 1 }}
@endforeach
Map Details
Social Links
@endsection @push('scripts') @endpush