@extends('admin.layouts.base') @section('content')

Website CMS Settings

Manage your website's identity, branding, contact information, social links, and operating hours.

@if (session('swal')) @endif @if ($errors->any()) @endif
@csrf
General Settings

Basic website configuration

Display name of your website @error('site_name')
{{ $message }}
@enderror
%
Percentage added to supplier quotes @error('quote_markup')
{{ $message }}
@enderror
Branding

Website logo and favicon

@if ($settings?->logo)

Current logo:

Current Logo
@endif
Recommended: 300x80px transparent PNG or SVG
@error('logo')
{{ $message }}
@enderror
@if ($settings?->favicon)

Current favicon:

Current Favicon
@endif
Recommended: 32x32 or 64x64px ICO/PNG
@error('favicon')
{{ $message }}
@enderror
Social Media Links

Connect your social media profiles

@foreach ([ 'facebook_url' => ['label' => 'Facebook', 'icon' => 'facebook', 'color' => 'primary', 'placeholder' => 'https://facebook.com/yourpage'], 'twitter_url' => ['label' => 'Twitter / X', 'icon' => 'twitter', 'color' => 'info', 'placeholder' => 'https://twitter.com/yourhandle'], 'instagram_url' => ['label' => 'Instagram', 'icon' => 'instagram', 'color' => 'danger', 'placeholder' => 'https://instagram.com/yourhandle'], 'tiktok_url' => ['label' => 'TikTok', 'icon' => 'tiktok', 'color' => 'dark', 'placeholder' => 'https://tiktok.com/@yourhandle'], 'wechat_url' => ['label' => 'WeChat', 'icon' => 'weixin', 'color' => 'success', 'placeholder' => 'WeChat ID or official account link'] ] as $field => $data)
@error($field)
{{ $message }}
@enderror
@endforeach
Business Hours

Set your operating schedule

@error('business_hours_preset')
{{ $message }}
@enderror
Specify each day's hours on a new line @error('business_hours_custom')
{{ $message }}
@enderror
Contact & Location

Business contact information

@error('main_address')
{{ $message }}
@enderror
Optional secondary location @error('alternate_address')
{{ $message }}
@enderror
@error('main_phone')
{{ $message }}
@enderror
Optional secondary phone @error('alternate_phone')
{{ $message }}
@enderror
@error('general_email')
{{ $message }}
@enderror
Optional support email @error('support_email')
{{ $message }}
@enderror
Go to Google Maps → Share → Embed a map → Copy the full <iframe> code
@error('location_iframe')
{{ $message }}
@enderror
@endsection