@extends('admin.layout') @section('content')
@csrf
Paypal
@csrf
@php $paypalInfo = json_decode($paypal->information, true); // dd($paypalInfo); @endphp
@if ($errors->has('client_id'))

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

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

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

@endif
@csrf
Stripe
@csrf @php $stripeInfo = json_decode($stripe->information, true); // dd($stripeInfo); @endphp
@if ($errors->has('key'))

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

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

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

@endif
@csrf
Paytm
@csrf @php $paytmInfo = json_decode($paytm->information, true); // dd($paytmInfo); @endphp
@if ($errors->has('secret'))

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

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

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

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

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

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

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

@endif
@csrf
Instamojo
@csrf @php $instamojoInfo = json_decode($instamojo->information, true); // dd($instamojoInfo); @endphp
@if ($errors->has('key'))

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

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

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

@endif
@csrf
Paystack
@csrf @php $paystackInfo = json_decode($paystack->information, true); // dd($paystackInfo); @endphp
@if ($errors->has('secret_key'))

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

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

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

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

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

@endif
@csrf
Flutterwave
@csrf @php $flutterwaveInfo = json_decode($flutterwave->information, true); // dd($flutterwaveInfo); @endphp
@if ($errors->has('public_key'))

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

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

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

@endif
@csrf
Mollie Payment
@csrf @php $mollieInfo = json_decode($mollie->information, true); // dd($mollieInfo); @endphp
@if ($errors->has('key'))

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

@endif
@csrf
Razorpay
@csrf @php $razorpayInfo = json_decode($razorpay->information, true); // dd($razorpayInfo); @endphp
@if ($errors->has('key'))

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

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

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

@endif
@csrf
PayUmoney
@csrf @php $payumoneyInfo = json_decode($payumoney->information, true); @endphp
@if ($errors->has('key'))

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

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

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

@endif
@csrf
Mercadopago
@csrf @php $mercadopagoInfo = json_decode($mercadopago->information, true); // dd($mercadopagoInfo); @endphp
@if ($errors->has('token'))

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

@endif
@endsection