<div class="row">
<div class="col-12">
<form method="post" action="javascript:void(0)" id="updatepreference">
<?php echo csrf_field(); ?>
<?php echo method_field('PUT'); ?>
<div class="form-row">
<div class="form-group col-md-6">
<h5 class="">Contact Email</h5>
<input type="text" class="form-control " name="contact_email"
value="<?php echo e($settings->contact_email); ?>" required>
</div>
<input name="s_currency" value="<?php echo e($settings->s_currency); ?>" id="s_c" type="hidden">
<div class="form-group col-md-6">
<h5 class="">Website Currency</h5>
<select name="currency" id="select_c" class="form-control select2" onchange="changecurr()"
style="width: 100%">
<option value="<?php echo htmlentities($settings->currency); ?>"><?php echo e($settings->currency); ?></option>
<?php $__currentLoopData = $currencies; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $key => $currency): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
<option id="<?php echo e($key); ?>" value="<?php echo html_entity_decode($currency); ?>">
<?php echo e($key . ' (' . html_entity_decode($currency) . ')'); ?></option>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
</select>
</div>
<input type="hidden" value="<?php echo e($settings->site_preference); ?>" name="site_preference">
<div class="form-group col-md-6">
<h5 class="">HomePage Url (Redirect)</h5>
<input type="text" class="form-control " name="redirect_url"
placeholder="eg https://myhomepage.com" value="<?php echo e($settings->redirect_url); ?>">
<small>If you use a custom homepage and you want all request to be rediected to that page, please
enter the url here, if empty the system will use our default homepage/webpages</small>
</div>
<div class="col-md-6">
<div class="form-group ">
<h5 class="">Referral bonus should come from </h5>
<select name="referral_proffit_from" class="form-control">
<option><?php echo e($settings->referral_proffit_from); ?></option>
<option>Deposit</option>
<option>Profit(ROI)</option>
</select>
</div>
</div>
</div>
<div class="mt-3 row">
<div class="mt-4 col-md-6">
<h5 class="">Annoucment:</h5>
<div class="selectgroup">
<label class="selectgroup-item">
<input type="radio" name="annouc" value="on" class="selectgroup-input"
<?php echo e($settings->enable_annoc == 'on' ? 'checked' : ''); ?>>
<span class="selectgroup-button">On</span>
</label>
<label class="selectgroup-item">
<input type="radio" name="annouc" value="off" class="selectgroup-input"
<?php echo e($settings->enable_annoc != 'on' ? 'checked' : ''); ?>>
<span class="selectgroup-button">Off</span>
</label>
</div>
</div>
<div class="mt-4 col-md-6">
<h5 class="">Weekend Trade:</h5>
<div class="selectgroup">
<label class="selectgroup-item">
<input type="radio" name="weekend_trade" value="on" class="selectgroup-input"
<?php echo e($settings->weekend_trade == 'on' ? 'checked' : ''); ?>>
<span class="selectgroup-button">On</span>
</label>
<label class="selectgroup-item">
<input type="radio" name="weekend_trade"
<?php echo e($settings->weekend_trade != 'on' ? 'checked' : ''); ?> value="off"
class="selectgroup-input">
<span class="selectgroup-button">Off</span>
</label>
</div>
<div>
<small class="">if turned off, Users will not receive ROI on weekends</small>
</div>
</div>
<div class="mt-4 col-md-6">
<h5 class="">Withdrawals</h5>
<div class="selectgroup">
<label class="selectgroup-item">
<input type="radio" name="withdraw" id="withdraw" value="true"
class="selectgroup-input" <?php echo e($settings->enable_with == 'true' ? 'checked' : ''); ?>>
<span class="selectgroup-button">Enable</span>
</label>
<label class="selectgroup-item">
<input type="radio" name="withdraw"
<?php echo e($settings->enable_with != 'true' ? 'checked' : ''); ?>value="false"
class="selectgroup-input">
<span class="selectgroup-button">Disable</span>
</label>
</div>
<div>
<small class="">if disabled, Users will not be able to place withdrawal request</small>
</div>
</div>
<div class="mt-4 col-md-6">
<h5 class="">Google ReCaptcha:</h5>
<div class="selectgroup">
<label class="selectgroup-item">
<input type="radio" name="captcha" value="true" class="selectgroup-input"
<?php echo e($settings->captcha == 'true' ? 'checked' : ''); ?>>
<span class="selectgroup-button">On</span>
</label>
<label class="selectgroup-item">
<input type="radio" name="captcha" <?php echo e($settings->captcha != 'true' ? 'checked' : ''); ?>
value="false" class="selectgroup-input">
<span class="selectgroup-button">Off</span>
</label>
</div>
<div>
<small class="">if turned on, Users will need to pass the google recaptcha challenge upon
registration, also please see how to set up google recpatcha on your website before you can
use it. <a
href="https://doc.onlinetrade.brynamics.xyz/details/how-to-add-google-recaptcha-"
target="_blank">See how</a></small>
</div>
</div>
<div class="mt-4 col-md-6">
<h5 class="">Translation</h5>
<div class="selectgroup">
<label class="selectgroup-item">
<input type="radio" name="googlet" id="googlet" value="on"
class="selectgroup-input" <?php echo e($settings->google_translate == 'on' ? 'checked' : ''); ?>>
<span class="selectgroup-button">On</span>
</label>
<label class="selectgroup-item">
<input type="radio" name="googlet"
<?php echo e($settings->google_translate != 'on' ? 'checked' : ''); ?> value="off"
class="selectgroup-input">
<span class="selectgroup-button">Off</span>
</label>
</div>
<div>
<small class="">if turned on, Users will have the option of selecting their preferred
language through google translation</small>
</div>
</div>
<div class="mt-4 col-md-6">
<h5 class="">Trade Mode</h5>
<div class="selectgroup">
<label class="selectgroup-item">
<input type="radio" name="trade_mode" value="on" class="selectgroup-input"
<?php echo e($settings->trade_mode == 'on' ? 'checked' : ''); ?>>
<span class="selectgroup-button">On</span>
</label>
<label class="selectgroup-item">
<input type="radio" name="trade_mode"
<?php echo e($settings->trade_mode != 'on' ? 'checked' : ''); ?> value="off"
class="selectgroup-input">
<span class="selectgroup-button">Off</span>
</label>
</div>
<div>
<small class="">if turned off, Users will not receive thier ROI at all.</small>
</div>
</div>
<div class="mt-4 col-md-6">
<h5 class="">KYC(Verification)</h5>
<div class="selectgroup">
<label class="selectgroup-item">
<input type="radio" name="enable_kyc" value="yes" class="selectgroup-input"
<?php echo e($settings->enable_kyc == 'yes' ? 'checked' : ''); ?>>
<span class="selectgroup-button">On</span>
</label>
<label class="selectgroup-item">
<input type="radio" name="enable_kyc"
<?php echo e($settings->enable_kyc != 'yes' ? 'checked' : ''); ?> value="no"
class="selectgroup-input">
<span class="selectgroup-button">Off</span>
</label>
</div>
<div>
<small class="">if turned on, Users will need to submit required documents to get
verified before they can place a withdrawal request.</small>
</div>
</div>
<div class="mt-4 col-md-6">
<h5 class="">KYC(Verification) on Registraion</h5>
<div class="selectgroup">
<label class="selectgroup-item">
<input type="radio" name="enable_kyc_registration" value="yes"
class="selectgroup-input"
<?php echo e($settings->enable_kyc_registration == 'yes' ? 'checked' : ''); ?>>
<span class="selectgroup-button">On</span>
</label>
<label class="selectgroup-item">
<input type="radio" name="enable_kyc_registration"
<?php echo e($settings->enable_kyc_registration != 'yes' ? 'checked' : ''); ?> value="no"
class="selectgroup-input">
<span class="selectgroup-button">Off</span>
</label>
</div>
<div>
<small class="">if turned on, Users will have to go through the verification process upon
registration and they will not be allowed to carry out any operation on your system until
they have been verified by the admin. Note this will affect existing users who have not
completed their KYC. <strong>After they have submitted an application, you will also need to
verify the user from your end before they can procced.</strong>
</small>
</div>
</div>
<div class="mt-4 col-md-6">
<h5 class="">Google Login</h5>
<div class="selectgroup">
<label class="selectgroup-item">
<input type="radio" name="social" id="social" value="yes"
class="selectgroup-input"
<?php echo e($settings->enable_social_login == 'yes' ? 'checked' : ''); ?>>
<span class="selectgroup-button">On</span>
</label>
<label class="selectgroup-item">
<input type="radio" name="social"
<?php echo e($settings->enable_social_login != 'yes' ? 'checked' : ''); ?> value="no"
class="selectgroup-input">
<span class="selectgroup-button">Off</span>
</label>
</div>
<div>
<small class="">Google Login allows users to login/register with their google
account</small>
</div>
</div>
<div class="mt-4 col-md-6">
<h5 class="">Email Verification</h5>
<div class="selectgroup">
<label class="selectgroup-item">
<input type="radio" name="enail_verify" value="true" class="selectgroup-input"
<?php echo e($settings->enable_verification == 'true' ? 'checked' : ''); ?>>
<span class="selectgroup-button">Enable</span>
</label>
<label class="selectgroup-item">
<input type="radio" name="enail_verify"
<?php echo e($settings->enable_verification != 'true' ? 'checked' : ''); ?> value="false"
class="selectgroup-input">
<span class="selectgroup-button">Disable</span>
</label>
</div>
<div>
<small class="">If email verification is disabled users will not be ask to verify their
email address.</small>
</div>
</div>
<div class="mt-4 col-md-6">
<h5 class="">Return Capital</h5>
<div class="selectgroup">
<label class="selectgroup-item">
<input type="radio" name="return_capital" value="true" class="selectgroup-input"
<?php echo e($settings->return_capital ? 'checked' : ''); ?>>
<span class="selectgroup-button">Yes</span>
</label>
<label class="selectgroup-item">
<input type="radio" name="return_capital"
<?php echo e(!$settings->return_capital ? 'checked' : ''); ?> value="false"
class="selectgroup-input">
<span class="selectgroup-button">No</span>
</label>
</div>
<div>
<small class="">If return capital is No, the system will not credit the user with his
capital after investment plan expires</small>
</div>
</div>
<div class="mt-4 col-md-6">
<h5 class="">Plan Cancellation</h5>
<div class="selectgroup">
<label class="selectgroup-item">
<input type="radio" name="should_cancel_plan" value="1" class="selectgroup-input"
<?php echo e($settings->should_cancel_plan ? 'checked' : ''); ?>>
<span class="selectgroup-button">On</span>
</label>
<label class="selectgroup-item">
<input type="radio" name="should_cancel_plan"
<?php echo e(!$settings->should_cancel_plan ? 'checked' : ''); ?> value="0"
class="selectgroup-input">
<span class="selectgroup-button">Off</span>
</label>
</div>
<div>
<small class="">Turn it on if you want users to be able to cancel their active investment
plans. Note the capital will be returned to users account when they cancel their
plan.</small>
</div>
</div>
<div class="mt-4 col-md-6">
<h5 class="">Use Onlinetrader Copytrading</h5>
<div class="selectgroup">
<label class="selectgroup-item">
<input type="radio" name="use_copytrade" value="1" class="selectgroup-input"
<?php echo e($settings->use_copytrade ? 'checked' : ''); ?>>
<span class="selectgroup-button">Yes</span>
</label>
<label class="selectgroup-item">
<input type="radio" name="use_copytrade"
<?php echo e(!$settings->use_copytrade ? 'checked' : ''); ?> value="0"
class="selectgroup-input">
<span class="selectgroup-button">No</span>
</label>
</div>
<div>
<small>
Turn off if you have your own copy trade system, and you only want to process users
subscription without
using our copytrade system.
</small>
</div>
</div>
</div>
<div class="mt-4">
<input type="submit" class="px-5 btn btn-primary btn-lg" value="Save">
</div>
</form>
</div>
</div>
<?php /**PATH /home/fundopuh/trader.fxex.org/resources/views/admin/Settings/AppSettings/webpreference.blade.php ENDPATH**/ ?>