@foreach ($errors->all() as $e)
{{ $e }}
@endforeach
@endif
{{ __('Payment link') }}
{{ __("Pick a payment provider and we'll append the payment link to every WhatsApp order message. Buyer pays via the link, you confirm in chat. No checkout flow built into the storefront.") }}
{{-- Razorpay API keys — only used when provider = "Razorpay (auto-generate)".
Lets the store mint a real payment link per order + auto-mark paid via webhook.
Secrets are encrypted at rest and never echoed back. --}}
@php
$hasRzpSecret = !empty($sf->payment_config_json['key_secret']);
$hasRzpWh = !empty($sf->payment_config_json['webhook_secret']);
@endphp
{{-- Abandoned-cart recovery (S3) --}}
@php $rc = is_array($sf->settings_json) ? $sf->settings_json : []; @endphp