@extends('layouts.website') @section('title', 'Terms of Service | Quickro POS') @section('content') @php $termsBody = trim($s['terms_body'] ?? ''); $termBlocks = $termsBody === '' ? [] : preg_split("/\r?\n\r?\n/", $termsBody); @endphp

Terms

Terms of Service

{{ $s['terms_summary'] ?? 'Use of Quickro POS is subject to active subscription terms, lawful business use, and compliance with local tax and invoicing regulations.' }}

@forelse($termBlocks as $block)

{!! nl2br(e($block)) !!}

@empty

Use Quickro POS only for lawful business operations. You are responsible for the accuracy of transactions, stock records, tax treatment, and staff access on your account.

Subscription features, storage allowances, and support terms may vary by plan. Abuse, fraud, or attempts to disrupt the service can result in account suspension.

By using the platform, you agree to maintain secure credentials and notify us of any unauthorized access immediately.

@endforelse
@endsection