⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.19
Server IP:
178.33.27.10
Server:
Linux cpanel.dev-unit.com 3.10.0-1160.108.1.el7.x86_64 #1 SMP Thu Jan 25 16:17:31 UTC 2024 x86_64
Server Software:
Apache/2.4.57 (Unix) OpenSSL/1.0.2k-fips
PHP Version:
8.2.11
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
id
/
public_html
/
storage
/
framework
/
views
/
View File Name :
8d27998c7378858e0962c741054a937ec9e84dfc.php
<?php $selLang = \App\Models\User\Language::where([['code', request()->input('language')], ['user_id', \Illuminate\Support\Facades\Auth::guard('web')->user()->id]])->first(); $userDefaultLang = \App\Models\User\Language::where([['user_id', \Illuminate\Support\Facades\Auth::guard('web')->user()->id], ['is_default', 1]])->first(); $userLanguages = \App\Models\User\Language::where('user_id', \Illuminate\Support\Facades\Auth::guard('web')->user()->id)->get(); ?> <?php if(!empty($selLang) && $selLang->rtl == 1): ?> <?php $__env->startSection('styles'); ?> <style> form:not(.modal-form) input, form:not(.modal-form) textarea, form:not(.modal-form) select, select[name='userLanguage'] { direction: rtl; } form:not(.modal-form) .note-editor.note-frame .note-editing-area .note-editable { direction: rtl; text-align: right; } </style> <?php $__env->stopSection(); ?> <?php endif; ?> <?php $__env->startSection('content'); ?> <div class="page-header"> <h4 class="page-title"><?php echo e($keywords['Payment_Gateways'] ?? __('Payment Gateways')); ?></h4> <ul class="breadcrumbs"> <li class="nav-home"> <a href="<?php echo e(route('user-dashboard')); ?>"> <i class="flaticon-home"></i> </a> </li> <li class="separator"> <i class="flaticon-right-arrow"></i> </li> <li class="nav-item"> <a href="#"><?php echo e($keywords['Payment_Gateways'] ?? __('Payment Gateways')); ?></a> </li> </ul> </div> <div class="row"> <div class="col-lg-4"> <div class="card"> <form action="<?php echo e(route('user.paypal.update')); ?>" method="post"> <?php echo csrf_field(); ?> <div class="card-header"> <div class="row"> <div class="col-lg-12"> <div class="card-title"><?php echo e($keywords['Paypal'] ?? __('Paypal')); ?></div> </div> </div> </div> <div class="card-body pt-5 pb-5"> <div class="row"> <div class="col-lg-12"> <?php echo csrf_field(); ?> <div class="form-group"> <label><?php echo e($keywords['Paypal'] ?? __('Paypal')); ?></label> <div class="selectgroup w-100"> <label class="selectgroup-item"> <input type="radio" name="status" value="1" class="selectgroup-input" <?php echo e($paypal->status == 1 ? 'checked' : ''); ?>> <span class="selectgroup-button"><?php echo e($keywords['Active'] ?? __('Active')); ?></span> </label> <label class="selectgroup-item"> <input type="radio" name="status" value="0" class="selectgroup-input" <?php echo e($paypal->status == 0 ? 'checked' : ''); ?>> <span class="selectgroup-button"><?php echo e($keywords['Deactive'] ?? __('Deactive')); ?></span> </label> </div> </div> <?php $paypalInfo = json_decode($paypal->information, true); ?> <div class="form-group"> <label><?php echo e($keywords['Paypal_Test_Mode'] ?? __('Paypal Test Mode')); ?></label> <div class="selectgroup w-100"> <label class="selectgroup-item"> <input type="radio" name="sandbox_check" value="1" class="selectgroup-input" <?php echo e($paypalInfo ? ($paypalInfo['sandbox_check'] == 1 ? 'checked' : '') : ''); ?>> <span class="selectgroup-button"><?php echo e($keywords['Active'] ?? __('Active')); ?></span> </label> <label class="selectgroup-item"> <input type="radio" name="sandbox_check" value="0" class="selectgroup-input" <?php echo e($paypalInfo ? ($paypalInfo['sandbox_check'] == 0 ? 'checked' : '') : ''); ?>> <span class="selectgroup-button"><?php echo e($keywords['Deactive'] ?? __('Deactive')); ?></span> </label> </div> </div> <div class="form-group"> <label><?php echo e($keywords['Paypal_Client_ID'] ?? __('Paypal Client ID')); ?></label> <input class="form-control" name="client_id" value="<?php echo e($paypalInfo['client_id'] ?? ''); ?>"> <?php if($errors->has('client_id')): ?> <p class="mb-0 text-danger"><?php echo e($errors->first('client_id')); ?></p> <?php endif; ?> </div> <div class="form-group"> <label><?php echo e($keywords['Paypal_Client_Secret'] ?? __('Paypal Client Secret')); ?></label> <input class="form-control" name="client_secret" value="<?php echo e($paypalInfo['client_secret'] ?? ''); ?>"> <?php if($errors->has('client_secret')): ?> <p class="mb-0 text-danger"><?php echo e($errors->first('client_secret')); ?></p> <?php endif; ?> </div> </div> </div> </div> <div class="card-footer"> <div class="form"> <div class="form-group from-show-notify row"> <div class="col-12 text-center"> <button type="submit" id="displayNotif" class="btn btn-success"><?php echo e($keywords['Update'] ?? __('Update')); ?></button> </div> </div> </div> </div> </form> </div> </div> <div class="col-lg-4"> <div class="card"> <form class="" action="<?php echo e(route('user.stripe.update')); ?>" method="post"> <?php echo csrf_field(); ?> <div class="card-header"> <div class="row"> <div class="col-lg-12"> <div class="card-title"><?php echo e($keywords['Stripe'] ?? __('Stripe')); ?></div> </div> </div> </div> <div class="card-body pt-5 pb-5"> <div class="row"> <div class="col-lg-12"> <?php echo csrf_field(); ?> <?php $stripeInfo = json_decode($stripe->information, true); ?> <div class="form-group"> <label><?php echo e($keywords['Stripe'] ?? __('Stripe')); ?></label> <div class="selectgroup w-100"> <label class="selectgroup-item"> <input type="radio" name="status" value="1" class="selectgroup-input" <?php echo e($stripeInfo ? ($stripe->status == 1 ? 'checked' : '') : ''); ?>> <span class="selectgroup-button"><?php echo e($keywords['Active'] ?? __('Active')); ?></span> </label> <label class="selectgroup-item"> <input type="radio" name="status" value="0" class="selectgroup-input" <?php echo e($stripeInfo ? ($stripe->status == 0 ? 'checked' : '') : ''); ?>> <span class="selectgroup-button"><?php echo e($keywords['Deactive'] ?? __('Deactive')); ?></span> </label> </div> </div> <div class="form-group"> <label><?php echo e($keywords['Stripe_Key'] ?? __('Stripe Key')); ?></label> <input class="form-control" name="key" value="<?php echo e($stripeInfo['key'] ?? ''); ?>"> <?php if($errors->has('key')): ?> <p class="mb-0 text-danger"><?php echo e($errors->first('key')); ?></p> <?php endif; ?> </div> <div class="form-group"> <label><?php echo e($keywords['Stripe_Secret'] ?? __('Stripe Secret')); ?></label> <input class="form-control" name="secret" value="<?php echo e($stripeInfo['secret'] ?? ''); ?>"> <?php if($errors->has('secret')): ?> <p class="mb-0 text-danger"><?php echo e($errors->first('secret')); ?></p> <?php endif; ?> </div> </div> </div> </div> <div class="card-footer"> <div class="form"> <div class="form-group from-show-notify row"> <div class="col-12 text-center"> <button type="submit" id="displayNotif" class="btn btn-success"><?php echo e($keywords['Update'] ?? __('Update')); ?></button> </div> </div> </div> </div> </form> </div> </div> <div class="col-lg-4"> <div class="card"> <form class="" action="<?php echo e(route('user.paytm.update')); ?>" method="post"> <?php echo csrf_field(); ?> <div class="card-header"> <div class="row"> <div class="col-lg-12"> <div class="card-title"><?php echo e($keywords['Paytm'] ?? __('Paytm')); ?></div> </div> </div> </div> <div class="card-body pt-5 pb-5"> <div class="row"> <div class="col-lg-12"> <?php echo csrf_field(); ?> <?php $paytmInfo = json_decode($paytm->information, true); ?> <div class="form-group"> <label><?php echo e($keywords['Paytm'] ?? __('Paytm')); ?></label> <div class="selectgroup w-100"> <label class="selectgroup-item"> <input type="radio" name="status" value="1" class="selectgroup-input" <?php echo e($paytmInfo ? ($paytm->status == 1 ? 'checked' : '') : ''); ?>> <span class="selectgroup-button"><?php echo e($keywords['Active'] ?? __('Active')); ?></span> </label> <label class="selectgroup-item"> <input type="radio" name="status" value="0" class="selectgroup-input" <?php echo e($paytmInfo ? ($paytm->status == 0 ? 'checked' : '') : ''); ?>> <span class="selectgroup-button"><?php echo e($keywords['Deactive'] ?? __('Deactive')); ?></span> </label> </div> </div> <div class="form-group"> <label><?php echo e($keywords['Paytm_Environment'] ?? __('Paytm Environment')); ?></label> <div class="selectgroup w-100"> <label class="selectgroup-item"> <input type="radio" name="environment" value="local" class="selectgroup-input" <?php echo e($paytmInfo ? ($paytmInfo['environment'] == 'local' ? 'checked' : '') : ''); ?>> <span class="selectgroup-button"><?php echo e($keywords['Local'] ?? __('Local')); ?></span> </label> <label class="selectgroup-item"> <input type="radio" name="environment" value="production" class="selectgroup-input" <?php echo e($paytmInfo ? ($paytmInfo['environment'] == 'production' ? 'checked' : '') : ''); ?>> <span class="selectgroup-button"><?php echo e($keywords['Production'] ?? __('Production')); ?></span> </label> </div> <?php if($errors->has('environment')): ?> <p class="mb-0 text-danger"><?php echo e($errors->first('environment')); ?></p> <?php endif; ?> </div> <div class="form-group"> <label><?php echo e($keywords['Paytm_Merchant_Key'] ?? __('Paytm Merchant Key')); ?></label> <input class="form-control" name="secret" value="<?php echo e($paytmInfo['secret'] ?? ''); ?>"> <?php if($errors->has('secret')): ?> <p class="mb-0 text-danger"><?php echo e($errors->first('secret')); ?></p> <?php endif; ?> </div> <div class="form-group"> <label><?php echo e($keywords['Paytm_Merchant_mid'] ?? __('Paytm Merchant mid')); ?></label> <input class="form-control" name="merchant" value="<?php echo e($paytmInfo['merchant'] ?? ''); ?>"> <?php if($errors->has('merchant')): ?> <p class="mb-0 text-danger"><?php echo e($errors->first('merchant')); ?></p> <?php endif; ?> </div> <div class="form-group"> <label><?php echo e($keywords['Paytm_Merchant_website'] ?? __('Paytm Merchant website')); ?></label> <input class="form-control" name="website" value="<?php echo e($paytmInfo['website'] ?? ''); ?>"> <?php if($errors->has('website')): ?> <p class="mb-0 text-danger"><?php echo e($errors->first('website')); ?></p> <?php endif; ?> </div> <div class="form-group"> <label><?php echo e($keywords['Industry_type_id'] ?? __('Industry type id')); ?></label> <input class="form-control" name="industry" value="<?php echo e($paytmInfo['industry'] ?? ''); ?>"> <?php if($errors->has('industry')): ?> <p class="mb-0 text-danger"><?php echo e($errors->first('industry')); ?></p> <?php endif; ?> </div> </div> </div> </div> <div class="card-footer"> <div class="form"> <div class="form-group from-show-notify row"> <div class="col-12 text-center"> <button type="submit" class="btn btn-success"><?php echo e($keywords['Update'] ?? __('Update')); ?></button> </div> </div> </div> </div> </form> </div> </div> <div class="col-lg-4"> <div class="card"> <form class="" action="<?php echo e(route('user.instamojo.update')); ?>" method="post"> <?php echo csrf_field(); ?> <div class="card-header"> <div class="row"> <div class="col-lg-12"> <div class="card-title"><?php echo e($keywords['Instamojo'] ?? __('Instamojo')); ?></div> </div> </div> </div> <div class="card-body pt-5 pb-5"> <div class="row"> <div class="col-lg-12"> <?php echo csrf_field(); ?> <?php $instamojoInfo = json_decode($instamojo->information, true); ?> <div class="form-group"> <label><?php echo e($keywords['Instamojo'] ?? __('Instamojo')); ?></label> <div class="selectgroup w-100"> <label class="selectgroup-item"> <input type="radio" name="status" value="1" class="selectgroup-input" <?php echo e($instamojo ? ($instamojo->status == 1 ? 'checked' : '') : ''); ?>> <span class="selectgroup-button"><?php echo e($keywords['Active'] ?? __('Active')); ?></span> </label> <label class="selectgroup-item"> <input type="radio" name="status" value="0" class="selectgroup-input" <?php echo e($instamojo ? ($instamojo->status == 0 ? 'checked' : '') : ''); ?>> <span class="selectgroup-button"><?php echo e($keywords['Deactive'] ?? __('Deactive')); ?></span> </label> </div> </div> <div class="form-group"> <label><?php echo e($keywords['Test_Mode'] ?? __('Test Mode')); ?></label> <div class="selectgroup w-100"> <label class="selectgroup-item"> <input type="radio" name="sandbox_check" value="1" class="selectgroup-input" <?php echo e($instamojoInfo ? ($instamojoInfo['sandbox_check'] == 1 ? 'checked' : '') : ''); ?>> <span class="selectgroup-button"><?php echo e($keywords['Active'] ?? __('Active')); ?></span> </label> <label class="selectgroup-item"> <input type="radio" name="sandbox_check" value="0" class="selectgroup-input" <?php echo e($instamojoInfo ? ($instamojoInfo['sandbox_check'] == 0 ? 'checked' : '') : ''); ?>> <span class="selectgroup-button"><?php echo e($keywords['Deactive'] ?? __('Deactive')); ?></span> </label> </div> </div> <div class="form-group"> <label><?php echo e($keywords['Instamojo_API_Key'] ?? __('Instamojo API Key')); ?></label> <input class="form-control" name="key" value="<?php echo e($instamojoInfo['key'] ?? ''); ?>"> <?php if($errors->has('key')): ?> <p class="mb-0 text-danger"><?php echo e($errors->first('key')); ?></p> <?php endif; ?> </div> <div class="form-group"> <label><?php echo e($keywords['Instamojo_Auth_Token'] ?? __('Instamojo Auth Token')); ?></label> <input class="form-control" name="token" value="<?php echo e($instamojoInfo['token'] ?? ''); ?>"> <?php if($errors->has('token')): ?> <p class="mb-0 text-danger"><?php echo e($errors->first('token')); ?></p> <?php endif; ?> </div> </div> </div> </div> <div class="card-footer"> <div class="form"> <div class="form-group from-show-notify row"> <div class="col-12 text-center"> <button type="submit" class="btn btn-success"><?php echo e($keywords['Update'] ?? __('Update')); ?></button> </div> </div> </div> </div> </form> </div> </div> <div class="col-lg-4"> <div class="card"> <form class="" action="<?php echo e(route('user.paystack.update')); ?>" method="post"> <?php echo csrf_field(); ?> <div class="card-header"> <div class="row"> <div class="col-lg-12"> <div class="card-title"><?php echo e($keywords['Paystack'] ?? __('Paystack')); ?></div> </div> </div> </div> <div class="card-body pt-5 pb-5"> <div class="row"> <div class="col-lg-12"> <?php echo csrf_field(); ?> <?php $paystackInfo = json_decode($paystack->information, true); ?> <div class="form-group"> <label><?php echo e($keywords['Paystack'] ?? __('Paystack')); ?></label> <div class="selectgroup w-100"> <label class="selectgroup-item"> <input type="radio" name="status" value="1" class="selectgroup-input" <?php echo e($paystackInfo ? ($paystack->status == 1 ? 'checked' : '') : ''); ?>> <span class="selectgroup-button"><?php echo e($keywords['Active'] ?? __('Active')); ?></span> </label> <label class="selectgroup-item"> <input type="radio" name="status" value="0" class="selectgroup-input" <?php echo e($paystackInfo ? ($paystack->status == 0 ? 'checked' : '') : ''); ?>> <span class="selectgroup-button"><?php echo e($keywords['Deactive'] ?? __('Deactive')); ?></span> </label> </div> </div> <div class="form-group"> <label><?php echo e($keywords['Paystack_Secret_Key'] ?? __('Paystack Secret Key')); ?></label> <input class="form-control" name="key" value="<?php echo e($paystackInfo['key'] ?? ''); ?>"> <?php if($errors->has('key')): ?> <p class="mb-0 text-danger"><?php echo e($errors->first('key')); ?></p> <?php endif; ?> </div> </div> </div> </div> <div class="card-footer"> <div class="form"> <div class="form-group from-show-notify row"> <div class="col-12 text-center"> <button type="submit" id="displayNotif" class="btn btn-success"><?php echo e($keywords['Update'] ?? __('Update')); ?></button> </div> </div> </div> </div> </form> </div> </div> <div class="col-lg-4"> <div class="card"> <form class="" action="<?php echo e(route('user.flutterwave.update')); ?>" method="post"> <?php echo csrf_field(); ?> <div class="card-header"> <div class="row"> <div class="col-lg-12"> <div class="card-title"><?php echo e($keywords['Flutterwave'] ?? __('Flutterwave')); ?></div> </div> </div> </div> <div class="card-body pt-5 pb-5"> <div class="row"> <div class="col-lg-12"> <?php echo csrf_field(); ?> <?php $flutterwaveInfo = json_decode($flutterwave->information, true); ?> <div class="form-group"> <label><?php echo e($keywords['Flutterwave'] ?? __('Flutterwave')); ?></label> <div class="selectgroup w-100"> <label class="selectgroup-item"> <input type="radio" name="status" value="1" class="selectgroup-input" <?php echo e($flutterwaveInfo ? ($flutterwave->status == 1 ? 'checked' : '') : ''); ?>> <span class="selectgroup-button"><?php echo e($keywords['Active'] ?? __('Active')); ?></span> </label> <label class="selectgroup-item"> <input type="radio" name="status" value="0" class="selectgroup-input" <?php echo e($flutterwaveInfo ? ($flutterwave->status == 0 ? 'checked' : '') : ''); ?>> <span class="selectgroup-button"><?php echo e($keywords['Deactive'] ?? __('Deactive')); ?></span> </label> </div> </div> <div class="form-group"> <label><?php echo e($keywords['Flutterwave_Public_Key'] ?? __('Flutterwave Public Key')); ?></label> <input class="form-control" name="public_key" value="<?php echo e($flutterwaveInfo['public_key'] ?? ''); ?>"> <?php if($errors->has('public_key')): ?> <p class="mb-0 text-danger"><?php echo e($errors->first('public_key')); ?></p> <?php endif; ?> </div> <div class="form-group"> <label><?php echo e($keywords['Flutterwave_Secret_Key'] ?? __('Flutterwave Secret Key')); ?></label> <input class="form-control" name="secret_key" value="<?php echo e($flutterwaveInfo['secret_key'] ?? ''); ?>"> <?php if($errors->has('secret_key')): ?> <p class="mb-0 text-danger"><?php echo e($errors->first('secret_key')); ?></p> <?php endif; ?> </div> </div> </div> </div> <div class="card-footer"> <div class="form"> <div class="form-group from-show-notify row"> <div class="col-12 text-center"> <button type="submit" class="btn btn-success"><?php echo e($keywords['Update'] ?? __('Update')); ?></button> </div> </div> </div> </div> </form> </div> </div> <div class="col-lg-4"> <div class="card"> <form class="" action="<?php echo e(route('user.mollie.update')); ?>" method="post"> <?php echo csrf_field(); ?> <div class="card-header"> <div class="row"> <div class="col-lg-12"> <div class="card-title"><?php echo e($keywords['Mollie_Payment'] ?? __('Mollie Payment')); ?></div> </div> </div> </div> <div class="card-body pt-5 pb-5"> <div class="row"> <div class="col-lg-12"> <?php echo csrf_field(); ?> <?php $mollieInfo = json_decode($mollie->information, true); ?> <div class="form-group"> <label><?php echo e($keywords['Mollie_Payment'] ?? __('Mollie Payment')); ?></label> <div class="selectgroup w-100"> <label class="selectgroup-item"> <input type="radio" name="status" value="1" class="selectgroup-input" <?php echo e($mollieInfo ? ($mollie->status == 1 ? 'checked' : '') : ''); ?>> <span class="selectgroup-button"><?php echo e($keywords['Active'] ?? __('Active')); ?></span> </label> <label class="selectgroup-item"> <input type="radio" name="status" value="0" class="selectgroup-input" <?php echo e($mollieInfo ? ($mollie->status == 0 ? 'checked' : '') : ''); ?>> <span class="selectgroup-button"><?php echo e($keywords['Deactive'] ?? __('Deactive')); ?></span> </label> </div> </div> <div class="form-group"> <label><?php echo e($keywords['Mollie_Payment_Key'] ?? __('Mollie Payment Key')); ?></label> <input class="form-control" name="key" value="<?php echo e($mollieInfo['key'] ?? ''); ?>"> <?php if($errors->has('key')): ?> <p class="mb-0 text-danger"><?php echo e($errors->first('key')); ?></p> <?php endif; ?> </div> </div> </div> </div> <div class="card-footer"> <div class="form"> <div class="form-group from-show-notify row"> <div class="col-12 text-center"> <button type="submit" class="btn btn-success"><?php echo e($keywords['Update'] ?? __('Update')); ?></button> </div> </div> </div> </div> </form> </div> </div> <div class="col-lg-4"> <div class="card"> <form class="" action="<?php echo e(route('user.razorpay.update')); ?>" method="post"> <?php echo csrf_field(); ?> <div class="card-header"> <div class="row"> <div class="col-lg-12"> <div class="card-title"><?php echo e($keywords['Razorpay'] ?? __('Razorpay')); ?></div> </div> </div> </div> <div class="card-body pt-5 pb-5"> <div class="row"> <div class="col-lg-12"> <?php echo csrf_field(); ?> <?php $razorpayInfo = json_decode($razorpay->information, true); ?> <div class="form-group"> <label><?php echo e($keywords['Razorpay'] ?? __('Razorpay')); ?></label> <div class="selectgroup w-100"> <label class="selectgroup-item"> <input type="radio" name="status" value="1" class="selectgroup-input" <?php echo e($razorpayInfo ? ($razorpay->status == 1 ? 'checked' : '') : ''); ?>> <span class="selectgroup-button"><?php echo e($keywords['Active'] ?? __('Active')); ?></span> </label> <label class="selectgroup-item"> <input type="radio" name="status" value="0" class="selectgroup-input" <?php echo e($razorpayInfo ? ($razorpay->status == 0 ? 'checked' : '') : ''); ?>> <span class="selectgroup-button"><?php echo e($keywords['Deactive'] ?? __('Deactive')); ?></span> </label> </div> </div> <div class="form-group"> <label><?php echo e($keywords['Razorpay_Key'] ?? __('Razorpay Key')); ?></label> <input class="form-control" name="key" value="<?php echo e($razorpayInfo['key'] ?? ''); ?>"> <?php if($errors->has('key')): ?> <p class="mb-0 text-danger"><?php echo e($errors->first('key')); ?></p> <?php endif; ?> </div> <div class="form-group"> <label><?php echo e($keywords['Razorpay_Secret'] ?? __('Razorpay Secret')); ?></label> <input class="form-control" name="secret" value="<?php echo e($razorpayInfo['secret'] ?? ''); ?>"> <?php if($errors->has('secret')): ?> <p class="mb-0 text-danger"><?php echo e($errors->first('secret')); ?></p> <?php endif; ?> </div> </div> </div> </div> <div class="card-footer"> <div class="form"> <div class="form-group from-show-notify row"> <div class="col-12 text-center"> <button type="submit" class="btn btn-success"><?php echo e($keywords['Update'] ?? __('Update')); ?></button> </div> </div> </div> </div> </form> </div> </div> <div class="col-lg-4"> <div class="card"> <form class="" action="<?php echo e(route('user.anet.update')); ?>" method="post"> <?php echo csrf_field(); ?> <div class="card-header"> <div class="row"> <div class="col-lg-12"> <div class="card-title"><?php echo e($keywords['Authorize_Net'] ?? __('Authorize.Net')); ?></div> </div> </div> </div> <div class="card-body pt-5 pb-5"> <div class="row"> <div class="col-lg-12"> <?php echo csrf_field(); ?> <?php $anetInfo = json_decode($anet->information, true); ?> <div class="form-group"> <label><?php echo e($keywords['Authorize_Net'] ?? __('Authorize.Net')); ?></label> <div class="selectgroup w-100"> <label class="selectgroup-item"> <input type="radio" name="status" value="1" class="selectgroup-input" <?php echo e($anetInfo ? ($anet->status == 1 ? 'checked' : '') : ''); ?>> <span class="selectgroup-button"><?php echo e($keywords['Active'] ?? __('Active')); ?></span> </label> <label class="selectgroup-item"> <input type="radio" name="status" value="0" class="selectgroup-input" <?php echo e($anetInfo ? ($anet->status == 0 ? 'checked' : '') : ''); ?>> <span class="selectgroup-button"><?php echo e($keywords['Deactive'] ?? __('Deactive')); ?></span> </label> </div> </div> <div class="form-group"> <label><?php echo e($keywords['Authorize_Net_Test_Mode'] ?? __('Authorize.Net Test Mode')); ?></label> <div class="selectgroup w-100"> <label class="selectgroup-item"> <input type="radio" name="sandbox_check" value="1" class="selectgroup-input" <?php echo e($anetInfo ? ($anetInfo['sandbox_check'] == 1 ? 'checked' : '') : ''); ?>> <span class="selectgroup-button"><?php echo e($keywords['Active'] ?? __('Active')); ?></span> </label> <label class="selectgroup-item"> <input type="radio" name="sandbox_check" value="0" class="selectgroup-input" <?php echo e($anetInfo ? ($anetInfo['sandbox_check'] == 0 ? 'checked' : '') : ''); ?>> <span class="selectgroup-button"><?php echo e($keywords['Deactive'] ?? __('Deactive')); ?></span> </label> </div> </div> <div class="form-group"> <label><?php echo e($keywords['API_Login_ID'] ?? __('API Login ID')); ?></label> <input class="form-control" name="login_id" value="<?php echo e($anetInfo['login_id'] ?? ''); ?>"> <?php if($errors->has('login_id')): ?> <p class="mb-0 text-danger"><?php echo e($errors->first('login_id')); ?></p> <?php endif; ?> </div> <div class="form-group"> <label><?php echo e($keywords['Transaction_Key'] ?? __('Transaction Key')); ?></label> <input class="form-control" name="transaction_key" value="<?php echo e($anetInfo['transaction_key'] ?? ''); ?>"> <?php if($errors->has('transaction_key')): ?> <p class="mb-0 text-danger"><?php echo e($errors->first('transaction_key')); ?></p> <?php endif; ?> </div> <div class="form-group"> <label><?php echo e($keywords['Public_Client_Key'] ?? __('Public Client Key')); ?></label> <input class="form-control" name="public_key" value="<?php echo e($anetInfo['public_key'] ?? ''); ?>"> <?php if($errors->has('public_key')): ?> <p class="mb-0 text-danger"><?php echo e($errors->first('public_key')); ?></p> <?php endif; ?> </div> </div> </div> </div> <div class="card-footer"> <div class="form"> <div class="form-group from-show-notify row"> <div class="col-12 text-center"> <button type="submit" class="btn btn-success"><?php echo e($keywords['Update'] ?? __('Update')); ?></button> </div> </div> </div> </div> </form> </div> </div> <div class="col-lg-4"> <div class="card"> <form class="" action="<?php echo e(route('user.mercadopago.update')); ?>" method="post"> <?php echo csrf_field(); ?> <div class="card-header"> <div class="row"> <div class="col-lg-12"> <div class="card-title"><?php echo e($keywords['Mercadopago'] ?? __('Mercadopago')); ?></div> </div> </div> </div> <div class="card-body pt-5 pb-5"> <?php echo csrf_field(); ?> <?php $mercadopagoInfo = json_decode($mercadopago->information, true); ?> <div class="form-group"> <label><?php echo e($keywords['Mercado_Pago'] ?? __('Mercado Pago')); ?></label> <div class="selectgroup w-100"> <label class="selectgroup-item"> <input type="radio" name="status" value="1" class="selectgroup-input" <?php echo e($mercadopagoInfo ? ($mercadopago->status == 1 ? 'checked' : '') : ''); ?>> <span class="selectgroup-button"><?php echo e($keywords['Active'] ?? __('Active')); ?></span> </label> <label class="selectgroup-item"> <input type="radio" name="status" value="0" class="selectgroup-input" <?php echo e($mercadopagoInfo ? ($mercadopago->status == 0 ? 'checked' : '') : ''); ?>> <span class="selectgroup-button"><?php echo e($keywords['Deactive'] ?? __('Deactive')); ?></span> </label> </div> </div> <div class="form-group"> <label><?php echo e($keywords['Mercado_Pago_Test_Mode'] ?? __('Mercado Pago Test Mode')); ?></label> <div class="selectgroup w-100"> <label class="selectgroup-item"> <input type="radio" name="sandbox_check" value="1" class="selectgroup-input" <?php echo e($mercadopagoInfo ? ($mercadopagoInfo['sandbox_check'] == 1 ? 'checked' : '') : ''); ?>> <span class="selectgroup-button"><?php echo e($keywords['Active'] ?? __('Active')); ?></span> </label> <label class="selectgroup-item"> <input type="radio" name="sandbox_check" value="0" class="selectgroup-input" <?php echo e($mercadopagoInfo ? ($mercadopagoInfo['sandbox_check'] == 0 ? 'checked' : '') : ''); ?>> <span class="selectgroup-button"><?php echo e($keywords['Deactive'] ?? __('Deactive')); ?></span> </label> </div> </div> <div class="form-group"> <label><?php echo e($keywords['Mercadopago_Token'] ?? __('Mercadopago Token')); ?></label> <input class="form-control" name="token" value="<?php echo e($mercadopagoInfo['token'] ?? ''); ?>"> <?php if($errors->has('token')): ?> <p class="mb-0 text-danger"><?php echo e($errors->first('token')); ?></p> <?php endif; ?> </div> </div> <div class="card-footer"> <div class="form"> <div class="form-group from-show-notify row"> <div class="col-12 text-center"> <button type="submit" class="btn btn-success"><?php echo e($keywords['Update'] ?? __('Update')); ?></button> </div> </div> </div> </div> </form> </div> </div> </div> <?php $__env->stopSection(); ?> <?php echo $__env->make('user.layout', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/id/public_html/resources/views/user/gateways/index.blade.php ENDPATH**/ ?>