@extends('admin.layouts.master')
@push('css')
@endpush
@section('page-title')
@include('admin.components.page-title',['title' => __($page_title)])
@endsection
@section('breadcrumb')
@include('admin.components.breadcrumb',['breadcrumbs' => [
[
'name' => __("Dashboard"),
'url' => setRoute("admin.dashboard"),
]
], 'active' => __("Web Settings")])
@endsection
@section('content')
<div class="custom-card">
<div class="card-header">
<h6 class="title">{{ __("Basic Settings") }}</h6>
</div>
<div class="card-body">
<form class="card-form" method="POST" action="{{ setRoute('admin.web.settings.basic.settings.update') }}">
@csrf
@method("PUT")
<div class="row">
<div class="col-xl-6 col-lg-6 form-group">
<label>{{ __("Site Base Color") }}*</label>
<div class="picker">
<input type="color" value="{{ old('base_color',$basic_settings->base_color) }}" class="color color-picker">
<input type="text" autocomplete="off" spellcheck="false" class="color-input" value="{{ old('base_color',$basic_settings->base_color) }}" name="base_color">
</div>
</div>
<div class="col-xl-6 col-lg-6 form-group">
@include('admin.components.form.input',[
'label' => __("Site Name")."*",
'type' => "text",
'class' => "form--control",
'placeholder' => __("Write Here")."...",
'name' => "site_name",
'value' => old('site_name',$basic_settings->site_name),
])
</div>
<div class="col-xl-6 col-lg-6 form-group">
@include('admin.components.form.input',[
'label' => __("Web Version")."*",
'type' => "text",
'class' => "form--control",
'placeholder' => __("Write Here")."...",
'name' => "web_version",
'value' => old('web_version',$basic_settings->web_version),
])
</div>
<div class="col-xl-6 col-lg-6 form-group">
@include('admin.components.form.input',[
'label' => __("Site Title")."*",
'type' => "text",
'class' => "form--control",
'placeholder' => __("Write Here")."...",
'name' => "site_title",
'value' => old('site_title',$basic_settings->site_title),
])
</div>
<div class="col-xl-6 col-lg-6 form-group">
<label>{{ __("OTP Expiration") }}*</label>
<div class="input-group">
<input type="number" class="form--control" value="{{ old('otp_exp_seconds',$basic_settings->otp_exp_seconds) }}" name="otp_exp_seconds">
<span class="input-group-text">{{ __("Seconds") }}</span>
</div>
</div>
<div class="col-xl-6 col-lg-6 form-group">
<label>{{ __("TimeZone") }}*</label>
<select name="timezone" class="form--control select2-auto-tokenize timezone-select" data-old="{{ old('timezone',$basic_settings->timezone) }}">
<option selected disabled>{{ __("Select Timezone") }}</option>
</select>
</div>
</div>
<div class="col-xl-12 col-lg-12">
@include('admin.components.button.form-btn',[
'class' => "w-100 btn-loading",
'text' => __("Update"),
'permission' => "admin.web.settings.basic.settings.update",
])
</div>
</form>
</div>
</div>
<div class="custom-card mt-15">
<div class="card-header">
<h6 class="title">{{ __("Activation Settings") }}</h6>
</div>
<div class="card-body">
<div class="custom-inner-card mt-10 mb-10">
<div class="card-inner-body">
<div class="row mb-10-none">
<div class="col-xl-3 col-lg-3 col-md-6 col-sm-6 form-group">
@include('admin.components.form.switcher',[
'label' => __('User Registration'),
'name' => 'user_registration',
'value' => old('user_registration',$basic_settings->user_registration),
'options' => [__('Activated') => 1,__('Deactivated') => 0],
'onload' => true,
'permission' => "admin.web.settings.basic.settings.activation.update",
])
</div>
<div class="col-xl-3 col-lg-3 col-md-6 col-sm-6 form-group">
@include('admin.components.form.switcher',[
'label' => __('Secure Password'),
'name' => 'secure_password',
'value' => old('secure_password',$basic_settings->secure_password),
'options' => [__('Activated') => 1,__('Deactivated') => 0],
'onload' => true,
'permission' => "admin.web.settings.basic.settings.activation.update",
])
</div>
<div class="col-xl-3 col-lg-3 col-md-6 col-sm-6 form-group">
@include('admin.components.form.switcher',[
'label' => __('Agree Policy'),
'name' => 'agree_policy',
'value' => old('agree_policy',$basic_settings->agree_policy),
'options' => [__('Activated') => 1,__('Deactivated') => 0],
'onload' => true,
'permission' => "admin.web.settings.basic.settings.activation.update",
])
</div>
<div class="col-xl-3 col-lg-3 col-md-6 col-sm-6 form-group">
@include('admin.components.form.switcher',[
'label' => __('Force SSL'),
'name' => 'force_ssl',
'value' => old('force_ssl',$basic_settings->force_ssl),
'options' => [__('Activated') => 1,__('Deactivated') => 0],
'onload' => true,
'permission' => "admin.web.settings.basic.settings.activation.update",
])
</div>
<div class="col-xl-3 col-lg-3 col-md-6 col-sm-6 form-group">
@include('admin.components.form.switcher',[
'label' => __('Email Verification'),
'name' => 'email_verification',
'value' => old('email_verification',$basic_settings->email_verification),
'options' => [__('Activated') => 1,__('Deactivated') => 0],
'onload' => true,
'permission' => "admin.web.settings.basic.settings.activation.update",
])
</div>
<div class="col-xl-3 col-lg-3 col-md-6 col-sm-6 form-group">
@include('admin.components.form.switcher',[
'label' => __('Email Notification'),
'name' => 'email_notification',
'value' => old('email_notification',$basic_settings->email_notification),
'options' => [__('Activated') => 1,__('Deactivated') => 0],
'onload' => true,
'permission' => "admin.web.settings.basic.settings.activation.update",
])
</div>
<div class="col-xl-3 col-lg-3 col-md-6 col-sm-6 form-group">
@include('admin.components.form.switcher',[
'label' => __('Push Notification'),
'name' => 'push_notification',
'value' => old('push_notification',$basic_settings->push_notification),
'options' => [__('Activated') => 1,__('Deactivated') => 0],
'onload' => true,
'permission' => "admin.web.settings.basic.settings.activation.update",
])
</div>
<div class="col-xl-3 col-lg-3 col-md-6 col-sm-6 form-group">
@include('admin.components.form.switcher',[
'label' => __('KYC Verification'),
'name' => 'kyc_verification',
'value' => old('kyc_verification',$basic_settings->kyc_verification),
'options' => [__('Activated') => 1,__('Deactivated') => 0],
'onload' => true,
'permission' => "admin.web.settings.basic.settings.activation.update",
])
</div>
</div>
</div>
</div>
</div>
</div>
@endsection
@push('script')
<script>
$(document).ready(function() {
$(".color-picker").on("input",function() {
$(this).siblings("input").val($(this).val());
});
// Get Timezone
getTimeZones("{{ setRoute('global.timezones') }}");
switcherAjax("{{ setRoute('admin.web.settings.basic.settings.activation.update') }}");
});
</script>
@endpush
At NFC Pay, your privacy is of utmost importance to us. This Privacy Policy outlines how we collect, use, share, and protect your personal information when you use our services, including our website and mobile applications.
1. Information We Collect
2. How We Use Your Information
We use the information we collect for the following purposes:
3. Sharing Your Information
We may share your personal information in the following circumstances:
4. Security of Your Information
We take the security of your personal information seriously and implement a variety of security measures, including encryption, secure servers, and access controls, to protect your data from unauthorized access, disclosure, alteration, or destruction. However, no method of transmission over the internet or electronic storage is completely secure, and we cannot guarantee its absolute security.
5. Your Privacy Rights
Depending on your location, you may have certain rights regarding your personal information, such as:
6. Third-Party Links
Our services may contain links to third-party websites or services. We are not responsible for the privacy practices or the content of these third-party sites. We encourage you to review the privacy policies of those third parties.
7. Children’s Privacy
Our services are not intended for individuals under the age of 13. We do not knowingly collect personal information from children under 13. If we become aware that we have collected personal information from a child under 13, we will take steps to delete that information.
8. Changes to This Privacy Policy
We may update this Privacy Policy from time to time to reflect changes in our practices or for other operational, legal, or regulatory reasons. We will notify you of any significant changes by posting the new Privacy Policy on our website and updating the effective date.
9. Contact Us
If you have any questions or concerns about this Privacy Policy or our data practices, please contact us at:
Email: support@nfcpay.com