@extends('themes.basic.business.layouts.app') @section('container', 'dashboard-container-md') @section('title', d_trans('Settings')) @section('header_title', d_trans('Business Settings')) @section('breadcrumbs', Breadcrumbs::render('business.settings')) @section('hide_alerts', true) @section('content')

@csrf
{{ d_trans('Contact form messages will sent to this email.') }}
{{ d_trans('Add relevant tags to help improve search visibility and make it easier for people to find your business quickly') }}

@csrf
Hide Opening Hours Section
opening_hours_enabled)>

Turn on or off your opening hours section


Add / Edit Opening Hours

@php $days = [1=>'Monday',2=>'Tuesday',3=>'Wednesday',4=>'Thursday',5=>'Friday',6=>'Saturday',0=>'Sunday']; @endphp @foreach ($days as $w => $label) @php $hour = $currentBusiness->openingHours->firstWhere('weekday', $w); $enabled = $hour ? !$hour->is_closed : false; @endphp @endforeach

{{ d_trans('Supported types: JPEG, JPG, and PNG') }}

@csrf

@csrf @include('themes.basic.partials.address-forms', [ 'address_classes' => 'mb-4', 'address' => (object) [ 'line_1' => $currentBusiness->address_line_1, 'line_2' => $currentBusiness->address_line_2, 'city' => $currentBusiness->city, 'state' => $currentBusiness->state, 'zip' => $currentBusiness->zip, 'country' => $currentBusiness->country, ], ])

@if ($currentBusiness->isUnverified()) @if ($currentBusiness->hasPendingVerification())

{{ d_trans('Your business ownership verification request is under review') }}

@else

{{ d_trans('Verify your business ownership') }}

{{ d_trans('Verifying your business ownership helps build trust and ensures your business appears more credible to visitors.') }}

{{ d_trans('To confirm that you own or manage this business please provide one of the following:') }}

  • {{ d_trans('A screenshot of your Instagram, Facebook, TikTok, or other social profile clearly showing the account name/handle and your logged-in view') }}
  • {{ d_trans('A utility bill, lease, or invoice in the brand name (if you have one)') }}
  • {{ d_trans('A business license or registration (if the brand is formally registered)') }}
  • {{ d_trans('Any other verifiable document or page tying you to the name/handle (press coverage, payment dashboard screenshot, etc.)') }}

{{ d_trans('Please ensure any image or document is clear, current, and unaltered. Hide sensitive details (account numbers, personal addresses) if you wish—only the brand/account name and your link to it must be visible.') }}

@csrf
{{ d_trans('Allowed types (JPG, JPEG, PNG, PDF)') }}
@if (config('settings.actions.contact_page') && config('settings.general.contact_email')) @endif
@endif @else

{{ d_trans('Your business ownership has been verified') }}

@endif
@if (authBusinessOwner()->isSuperAdminOfCurrentBusiness())

{{ d_trans('After deleting your business, you will lose all your reviews and settings and will not be able to restore them') }}

@csrf
@endif
@push('styles_libs') @endpush @push('scripts_libs') @endpush @push('scripts') @if (session('accordion_id')) @endif @endpush @endsection