File: /home/bdedition/public_html/core/resources/views/admin/setting/configuration.blade.php
@extends('admin.layouts.app')
@section('panel')
<div class="row">
<div class="col-lg-12">
<div class="card">
<form method="post">
@csrf
<div class="card-body">
<ul class="list-group">
<li
class="list-group-item d-flex flex-wrap flex-sm-nowrap gap-2 justify-content-between align-items-center">
<div>
<p class="fw-bold mb-0">@lang('Force SSL')</p>
<p class="mb-0">
<small>@lang('By enabling') <span class="fw-bold">@lang('Force SSL (Secure Sockets Layer)')</span>
@lang('the system will force a visitor that he/she must have to visit in secure mode. Otherwise, the site will be loaded in secure mode.')</small>
</p>
</div>
<div class="form-group">
<input type="checkbox" data-width="100%" data-size="large" data-onstyle="-success"
data-offstyle="-danger" data-bs-toggle="toggle" data-height="35"
data-on="@lang('Enable')" data-off="@lang('Disable')" name="force_ssl"
@if (gs('force_ssl')) checked @endif>
</div>
</li>
<li
class="list-group-item d-flex flex-wrap flex-sm-nowrap gap-2 justify-content-between align-items-center">
<div>
<p class="fw-bold mb-0">@lang('Email Verification')</p>
<p class="mb-0">
<small>
@lang('If you enable') <span class="fw-bold">@lang('Email Verification')</span>,
@lang('users have to verify their email to access the dashboard. A 6-digit verification code will be sent to their email to be verified.')
<br>
<span class="fw-bold"><i>@lang('Note'):</i></span> <i>@lang('Make sure that the')
<span class="fw-bold">@lang('Email Notification') </span> @lang('module is enabled')</i>
</small>
</p>
</div>
<div class="form-group">
<input type="checkbox" data-width="100%" data-size="large" data-onstyle="-success"
data-offstyle="-danger" data-bs-toggle="toggle" data-height="35"
data-on="@lang('Enable')" data-off="@lang('Disable')" name="ev"
@if (gs('ev')) checked @endif>
</div>
</li>
<li
class="list-group-item d-flex flex-wrap flex-sm-nowrap gap-2 justify-content-between align-items-center">
<div>
<p class="fw-bold mb-0">@lang('Email Notification')</p>
<p class="mb-0">
<small>@lang('If you enable this module, the system will send emails to users where needed. Otherwise, no email will be sent.') <code>@lang('So be sure before disabling this module that, the system doesn\'t need to send any emails.')</code></small>
</p>
</div>
<div class="form-group">
<input type="checkbox" data-width="100%" data-size="large" data-onstyle="-success"
data-offstyle="-danger" data-bs-toggle="toggle" data-height="35"
data-on="@lang('Enable')" data-off="@lang('Disable')" name="en"
@if (gs('en')) checked @endif>
</div>
</li>
<li
class="list-group-item d-flex flex-wrap flex-sm-nowrap gap-2 justify-content-between align-items-center">
<div>
<p class="fw-bold mb-0">@lang('Mobile Verification')</p>
<p class="mb-0">
<small>
@lang('If you enable') <span class="fw-bold">@lang('Mobile Verification')</span>,
@lang('users have to verify their mobile to access the dashboard. A 6-digit verification code will be sent to their mobile to be verified.')
<br>
<span class="fw-bold"><i>@lang('Note'):</i></span> <i>@lang('Make sure that the')
<span class="fw-bold">@lang('SMS Notification') </span> @lang('module is enabled')</i>
</small>
</p>
</div>
<div class="form-group">
<input type="checkbox" data-width="100%" data-size="large" data-onstyle="-success"
data-offstyle="-danger" data-bs-toggle="toggle" data-height="35"
data-on="@lang('Enable')" data-off="@lang('Disable')" name="sv"
@if (gs('sv')) checked @endif>
</div>
</li>
<li
class="list-group-item d-flex flex-wrap flex-sm-nowrap gap-2 justify-content-between align-items-center">
<div>
<p class="fw-bold mb-0">@lang('SMS Notification')</p>
<p class="mb-0">
<small>@lang('If you enable this module, the system will send SMS to users where needed. Otherwise, no SMS will be sent.') <code>@lang('So be sure before disabling this module that, the system doesn\'t need to send any SMS.')</code></small>
</p>
</div>
<div class="form-group">
<input type="checkbox" data-width="100%" data-size="large" data-onstyle="-success"
data-offstyle="-danger" data-bs-toggle="toggle" data-height="35"
data-on="@lang('Enable')" data-off="@lang('Disable')" name="sn"
@if (gs('sn')) checked @endif>
</div>
</li>
<li
class="list-group-item d-flex flex-wrap flex-sm-nowrap gap-2 justify-content-between align-items-center">
<div>
<p class="fw-bold mb-0">@lang('Push Notification')</p>
<p class="mb-0">
<small>
@lang('If you enable this module, the system will send push notifications to users. Otherwise, no push notification will be sent.')
<a href="{{ route('admin.setting.notification.push') }}">@lang('Setting here')</a>
</small>
</p>
</div>
<div class="form-group">
<input type="checkbox" data-width="100%" data-size="large" data-onstyle="-success"
data-offstyle="-danger" data-bs-toggle="toggle" data-height="35"
data-on="@lang('Enable')" data-off="@lang('Disable')" name="pn"
@if (gs('pn')) checked @endif>
</div>
</li>
<li
class="list-group-item d-flex flex-wrap flex-sm-nowrap gap-2 justify-content-between align-items-center">
<div>
<p class="fw-bold mb-0">@lang('Language Option')</p>
<p class="mb-0">
<small>@lang('If you enable this module, users can change the language according to their needs.')</small>
</p>
</div>
<div class="form-group">
<input type="checkbox" data-width="100%" data-size="large" data-onstyle="-success"
data-offstyle="-danger" data-bs-toggle="toggle" data-height="35"
data-on="@lang('Enable')" data-off="@lang('Disable')" name="multi_language"
@if (gs('multi_language')) checked @endif>
</div>
</li>
</ul>
</div>
<div class="card-footer">
<button type="submit" class="btn btn--primary w-100 h-45">@lang('Submit')</button>
</div>
</form>
</div>
</div>
</div>
@endsection
@push('style')
<style>
.toggle.btn-lg {
height: 37px !important;
min-height: 37px !important;
}
.toggle-handle {
width: 25px !important;
padding: 0;
}
.form-group {
width: 125px;
margin-bottom: 0;
flex-shrink: 0
}
.list-group-item:hover {
background-color: #F7F7F7
}
</style>
@endpush