@php $settings = $settings ?? []; $siteName = $settings['site_name'] ?? ($settings['app_name'] ?? config('app.name', 'App')); $sections = [ 'terms' => ['title' => 'Terms of Service', 'body' => $settings['legal_terms'] ?? 'Use of this platform is subject to account, order, payment, cancellation and support policies.'], 'privacy' => ['title' => 'Privacy Policy', 'body' => $settings['legal_privacy'] ?? 'We process customer, store, driver, location and order data to operate delivery and support workflows.'], 'refund' => ['title' => 'Refund Policy', 'body' => $settings['legal_refund'] ?? 'Refund eligibility depends on payment status, store acceptance, delivery progress and support review.'], ]; @endphp Privacy & Legal | {{ $siteName }} @include('partials.public-blade-polish')
← Back home

Privacy & Legal

Current platform policies for customers, stores and delivery partners.

@foreach($sections as $key => $section) @if($type === 'legal' || $type === $key)

{{ $section['title'] }}

@endif @endforeach

Legal contact: {{ $settings['legal_contact_email'] ?? ($settings['contact_email'] ?? config('mail.from.address')) }}

@include('partials.web-visit-tracker', ['panel' => 'frontend'])