@extends('backend.layouts.app') @section('content')

Payment Gateway Settings

@if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif
{{-- ══════════════════ RAZORPAY ══════════════════ --}}
Razorpay Settings
{{ $gateways['razorpay']->is_sandbox ? 'SANDBOX / TEST MODE' : 'LIVE MODE' }}
@csrf
is_enabled ? 'checked' : '' }}>
is_sandbox ? 'checked' : '' }}>
Get your API keys from Razorpay Dashboard → Settings → API Keys. Test Key ID pre-filled — add your Test Key Secret below.
Test Cards (Razorpay Sandbox):
Card: 4111 1111 1111 1111 | Exp: any future | CVV: any
{{-- ══════════════════ SSLCOMMERZ ══════════════════ --}}
SSLCommerz Settings
{{ $gateways['sslcommerz']->is_sandbox ? 'SANDBOX / TEST MODE' : 'LIVE MODE' }}
@csrf
is_enabled ? 'checked' : '' }}>
is_sandbox ? 'checked' : '' }}>
Get your credentials from SSLCommerz Merchant Panel. Sandbox credentials testbox / qwerty are pre-filled for testing. Supports: bKash, Nagad, Rocket, Visa, MasterCard, and 30+ methods.
Sandbox Test: Use Store ID testbox and Password qwerty. In the payment screen, use any test card or bKash demo number.
{{-- ══════════════════ STRIPE ══════════════════ --}}
Stripe Settings
{{ $gateways['stripe']->is_sandbox ? 'SANDBOX / TEST MODE' : 'LIVE MODE' }}
@csrf
is_enabled ? 'checked' : '' }}>
is_sandbox ? 'checked' : '' }}>
Get your API keys from Stripe Dashboard → Developers → API Keys. Test keys are pre-filled — replace with your own from the dashboard.
Test Cards (Stripe):
Success: 4242 4242 4242 4242 | Exp: any future | CVV: any
3D Secure: 4000 0027 6000 3184
{{-- end tab-content --}}
@endsection