@include('Partials.sidebar')
@include('Partials.header')
{{-- ── Page Title ── --}}

Payment Gateway

  1. Settings
  2. Payment Gateway
{{-- ── Flash Messages ── --}} @if(session('success'))
@endif @if($errors->any())
@endif {{-- ── Form ── --}}

Add Payment Gateway

@csrf {{-- Provider quick-select --}}
@foreach([ ['razorpay', 'Razorpay', '#2563eb'], ['stripe', 'Stripe', '#7c3aed'], ['phonepe', 'PhonePe', '#ea580c'], ] as [$val, $label, $color]) @endforeach
{{-- Gateway Name --}}
Use lowercase: razorpay, stripe, phonepe
{{-- API Key --}}
{{-- API Secret --}}
{{-- Mode --}}
{{-- Hint box --}}
@include('Partials.footer')