File "7ce98857cbfb0279b187e84dfaa662634abba1d0.php"
Full Path: /home/fundopuh/trader.fxex.org/storage/framework/views/7ce98857cbfb0279b187e84dfaa662634abba1d0.php
File size: 4.64 KB
MIME-type: text/plain
Charset: utf-8
<div class="row">
<div class="col-md-12">
<form action="javascript:void(0)" method="POST" id="paypreform">
<?php echo csrf_field(); ?>
<?php echo method_field('PUT'); ?>
<div class="form-row">
<div class="form-group col-md-6">
<h5 class=""> Deposit option:</h5>
<select name="deposit_option" class="form-control ">
<option value="<?php echo e($settings->deposit_option); ?>"> <?php echo e($settings->deposit_option); ?>(Current)
</option>
<option value="manual">Manual</option>
<option value="auto">Automatic</option>
</select>
</div>
<div class="form-group col-md-6">
<h5 class=""> Withdrawal option:</h5>
<select name="withdrawal_option" class="form-control ">
<option value="<?php echo e($settings->withdrawal_option); ?>"><?php echo e($settings->withdrawal_option); ?>(Current)
</option>
<option value="manual">Manual</option>
<option value="auto">Automatic</option>
</select>
</div>
<div class="form-group col-md-6">
<h5 class=""> Minimum Deposit Amount:</h5>
<input class="form-control " type="text" name="minamt" value="<?php echo e($moresettings->minamt); ?>"
required>
<small class="">This amount indicates the minimum amount a user can deposit</small>
</div>
<div class="form-group col-md-6">
<h5 class="">Merchant for automatic USDT Payment:</h5>
<select name="merchat" id="" class="form-control ">
<option value="<?php echo e($settings->auto_merchant_option); ?>"><?php echo e($settings->auto_merchant_option); ?>
</option>
<option value="Coinpayment">Coinpayment</option>
<option value="Binance">Binance</option>
</select>
<small class="">
Please make sure you have entered your API keys for your selected USDT Merchant. Click the
Gateway/Coinpayment tab to confirm that. NOTE
<strong>Your website currency must be USD in order to use Binance.</strong>
</small>
</div>
<div class="form-group col-md-6">
<h5 class="">Withdrawal Deduction:</h5>
<select name="deduction_option" id="" class="form-control ">
<option value="<?php echo e($settings->deduction_option); ?>">
<?php echo e($settings->deduction_option == 'userRequest' ? 'Deduct on user request' : 'Deduct when admin approves'); ?>
</option>
<option value="userRequest">Deduct on user request</option>
<option value="AdminApprove">Deduct when admin approves</option>
</select>
<small class="">
This speciifes if you want users account to be deducted immediately they place a withdrawal
request or when admin approves it.
</small>
</div>
<div class="form-group col-md-6">
<h5 class="">Credit Card Payment Provider:</h5>
<select name="credit_card_provider" id="" class="form-control ">
<option>
<?php echo e($settings->credit_card_provider); ?>
</option>
<option>Paystack</option>
<option>Flutterwave</option>
<option>Stripe</option>
</select>
<small class="">
Signifies the provder to be used when users choose to deposit with their credit/debit card for
credit card option. Ensure you have entered the correct API keys for you selected option.
</small>
</div>
<div class="form-group col-md-12">
<button type="submit" class="px-4 btn btn-primary">Save</button>
</div>
</div>
</form>
</div>
</div>
<?php /**PATH /home/fundopuh/trader.fxex.org/resources/views/admin/Settings/PaymentSettings/withdrawal.blade.php ENDPATH**/ ?>