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

Terms of Service

{{ __('Please read these terms carefully before using our platform.') }}

Last Updated: {{ $c['last_updated'] ?? '' }}
Legally Binding
{{-- 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 --}}

{{ __('Questions about our terms?') }} {{ __('Contact us') }}

@endsection