@extends('admin.layout') @section('content')
@csrf
{{ __('Paypal') }}
@if ($errors->has('paypal_status'))

{{ $errors->first('paypal_status') }}

@endif
@php $paypalInfo = json_decode($paypal->information, true); @endphp
@if ($errors->has('paypal_sandbox_status'))

{{ $errors->first('paypal_sandbox_status') }}

@endif
@if ($errors->has('paypal_client_id'))

{{ $errors->first('paypal_client_id') }}

@endif
@if ($errors->has('paypal_client_secret'))

{{ $errors->first('paypal_client_secret') }}

@endif
@csrf
{{ __('Instamojo') }}
@if ($errors->has('instamojo_status'))

{{ $errors->first('instamojo_status') }}

@endif
@php $instamojoInfo = json_decode($instamojo->information, true); @endphp
@if ($errors->has('instamojo_sandbox_status'))

{{ $errors->first('instamojo_sandbox_status') }}

@endif
@if ($errors->has('instamojo_key'))

{{ $errors->first('instamojo_key') }}

@endif
@if ($errors->has('instamojo_token'))

{{ $errors->first('instamojo_token') }}

@endif
{{-- paytm --}}
@csrf
{{ __('Paytm') }}
@if ($errors->has('paytm_status'))

{{ $errors->first('paytm_status') }}

@endif
@php $paytmInfo = json_decode($paytm->information, true); @endphp
@if ($errors->has('paytm_environment'))

{{ $errors->first('paytm_environment') }}

@endif
@if ($errors->has('paytm_merchant_key'))

{{ $errors->first('paytm_merchant_key') }}

@endif
@if ($errors->has('paytm_merchant_mid'))

{{ $errors->first('paytm_merchant_mid') }}

@endif
@if ($errors->has('paytm_merchant_website'))

{{ $errors->first('paytm_merchant_website') }}

@endif
@if ($errors->has('paytm_industry_type'))

{{ $errors->first('paytm_industry_type') }}

@endif
{{-- stripe --}}
@csrf
{{ __('Stripe') }}
@if ($errors->has('stripe_status'))

{{ $errors->first('stripe_status') }}

@endif
@php $stripeInfo = json_decode($stripe->information, true); @endphp
@if ($errors->has('stripe_key'))

{{ $errors->first('stripe_key') }}

@endif
@if ($errors->has('stripe_secret'))

{{ $errors->first('stripe_secret') }}

@endif
{{-- flutterwave --}}
@csrf
{{ __('Flutterwave') }}
@if ($errors->has('flutterwave_status'))

{{ $errors->first('flutterwave_status') }}

@endif
@php $flutterwaveInfo = json_decode($flutterwave->information, true); @endphp
@if ($errors->has('flutterwave_public_key'))

{{ $errors->first('flutterwave_public_key') }}

@endif
@if ($errors->has('flutterwave_secret_key'))

{{ $errors->first('flutterwave_secret_key') }}

@endif
{{-- Razorpay --}}
@csrf
{{ __('Razorpay') }}
@if ($errors->has('razorpay_status'))

{{ $errors->first('razorpay_status') }}

@endif
@php $razorpayInfo = json_decode($razorpay->information, true); @endphp
@if ($errors->has('razorpay_key'))

{{ $errors->first('razorpay_key') }}

@endif
@if ($errors->has('razorpay_secret'))

{{ $errors->first('razorpay_secret') }}

@endif
{{-- mollie --}}
@csrf
{{ __('Mollie') }}
@if ($errors->has('mollie_status'))

{{ $errors->first('mollie_status') }}

@endif
@php $mollieInfo = json_decode($mollie->information, true); @endphp
@if ($errors->has('mollie_key'))

{{ $errors->first('mollie_key') }}

@endif
{{-- paystack --}}
@csrf
{{ __('Paystack') }}
@if ($errors->has('paystack_status'))

{{ $errors->first('paystack_status') }}

@endif
@php $paystackInfo = json_decode($paystack->information, true); @endphp
@if ($errors->has('paystack_key'))

{{ $errors->first('paystack_key') }}

@endif
{{-- mercadopago --}}
@csrf
{{ __('MercadoPago') }}
@if ($errors->has('mercadopago_status'))

{{ $errors->first('mercadopago_status') }}

@endif
@php $mercadopagoInfo = json_decode($mercadopago->information, true); @endphp
@if ($errors->has('mercadopago_sandbox_status'))

{{ $errors->first('mercadopago_sandbox_status') }}

@endif
@if ($errors->has('mercadopago_token'))

{{ $errors->first('mercadopago_token') }}

@endif
{{-- authorize.net --}}
@csrf
Authorize.Net
@csrf @php $anetInfo = json_decode($anet->information, true); @endphp
@if ($errors->has('login_id'))

{{ $errors->first('login_id') }}

@endif
@if ($errors->has('transaction_key'))

{{ $errors->first('transaction_key') }}

@endif
@if ($errors->has('public_key'))

{{ $errors->first('public_key') }}

@endif
@endsection