@extends('layouts.admin') @section('title','Payment Gateways') @section('content') {{-- Page header --}}

Payment Gateways

Configure payment methods available on your customer checkout.

@csrf
{{-- ════════════════════════════════════════ STRIPE ════════════════════════════════════════ --}} @php $stripeOn = $settings['stripe_enabled'] === '1'; @endphp
{{-- Header --}}
{{-- Icon --}}
S
{{-- Name + description --}}
Stripe
Credit & debit cards via Stripe Checkout
{{-- Toggle --}}
{{-- Fields (visible when enabled) --}}
@if($settings['stripe_secret_key'])

✓ Key is saved — leave blank to keep it unchanged.

@endif
{{-- ════════════════════════════════════════ PAYPAL ════════════════════════════════════════ --}} @php $paypalOn = $settings['paypal_enabled'] === '1'; @endphp
Pay Pal
PayPal
PayPal account, cards and local payment methods
@if($settings['paypal_secret'])

✓ Secret is saved — leave blank to keep it unchanged.

@endif
{{-- ════════════════════════════════════════ RAZORPAY ════════════════════════════════════════ --}} @php $razorOn = $settings['razorpay_enabled'] === '1'; @endphp
R pay
Razorpay
Cards, UPI, Netbanking, wallets — India & global
@if($settings['razorpay_key_secret'])

✓ Secret is saved — leave blank to keep it unchanged.

@endif
{{-- ════════════════════════════════════════ CASHFREE ════════════════════════════════════════ --}} @php $cashOn = $settings['cashfree_enabled'] === '1'; @endphp
CF
Cashfree
Cards, UPI, Netbanking — fast payouts for India
@if($settings['cashfree_secret_key'])

✓ Secret is saved — leave blank to keep it unchanged.

@endif
{{-- end gateway list --}} {{-- Footer save bar --}}
Password fields are only updated when you enter a new value. Enabled gateways will appear on the customer checkout page.
@endsection