@extends('layouts.app') @section('title', 'Razorpay Settings') @section('page-title', 'Razorpay Settings') @section('content') @if(session('success')) @endif @if(session('error')) @endif
Razorpay API Configuration
@csrf @method('PUT')
Note: These credentials are used for processing subscription payments. Make sure to use the correct API keys from your Razorpay dashboard.

How to get Razorpay API Keys:
  1. Login to your Razorpay Dashboard
  2. Go to Settings → API Keys
  3. Generate or copy your Key ID and Key Secret
  4. For testing, use Test Mode keys (starts with rzp_test_)
  5. For production, use Live Mode keys (starts with rzp_live_)
@if(empty($razorpayKey) || empty($razorpaySecret))
Warning: Razorpay API credentials are not configured. Partners will not be able to make payments until these are set.
@endif
@error('razorpay_key')
{{ $message }}
@enderror Your Razorpay API Key (starts with rzp_test_ for test mode or rzp_live_ for live mode)
@error('razorpay_secret')
{{ $message }}
@enderror Your Razorpay API Secret Key
Cancel
@push('scripts') @endpush @endsection