@extends('frontend.layout') @section('title', 'Refund Policy — ' . config('app.name')) @php $c = $content ?? []; $sections = $c['sections'] ?? []; @endphp @section('content')
{{-- Header --}}

Refund Policy

{{ __('We want you to be happy with your purchase. Here\'s our refund policy.') }}

Last Updated: {{ $c['last_updated'] ?? '' }}
Buyer Protection
{{-- Sections as cards --}}
@foreach($sections as $index => $section) @if(!empty($section['title']))
{{ str_pad($index + 1, 2, '0', STR_PAD_LEFT) }}

{{ $section['title'] }}

{{ $section['content'] ?? '' }}

@endif @endforeach
{{-- Bottom CTA --}}

{{ __('Need a refund?') }} {{ __('Contact our support team') }}

@endsection