<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{ $gs->title }}</title>
@if (isset($page->meta_tag) && isset($page->meta_description))
<meta name="keywords" content="{{ $page->meta_tag }}">
<meta name="description" content="{{ $page->meta_description }}">
@elseif(isset($blog->meta_tag) && isset($blog->meta_description))
<meta name="keywords" content="{{ $blog->meta_tag }}">
<meta name="description" content="{{ $blog->meta_description }}">
@else
<meta name="keywords" content="{{ $seo->meta_keys }}">
<meta name="author" content="GeniusOcean">
@endif
<!--Essential css files-->
<link rel="stylesheet" href="{{ asset('assets/front') }}/css/bootstrap.min.css">
<!-- this one -->
<link rel="stylesheet" href="{{ asset('assets/front') }}/css/all.css">
<link rel="stylesheet" href="{{ asset('assets/front') }}/css/owl-slider.css">
<link rel="stylesheet" href="{{ asset('assets/front') }}/css/nice-select.css">
<link rel="stylesheet" href="{{ asset('assets/front') }}/css/animate.css">
<link rel="stylesheet" href="{{ asset('assets/front/css/toastr.min.css') }}">
<link rel="stylesheet" href="{{ asset('assets/front') }}/css/style.css">
<link rel="stylesheet" href="{{ asset('assets/front/css/styles.php?color=' . str_replace('#', '', $gs->colors)) }}">
@if ($default_font->font_value)
<link href="https://fonts.googleapis.com/css?family={{ $default_font->font_value }}&display=swap"
rel="stylesheet">
@else
<link href="https://fonts.googleapis.com/css?family=Open+Sans&display=swap" rel="stylesheet">
@endif
@if ($default_font->font_family)
<link rel="stylesheet" id="colorr"
href="{{ asset('assets/front/css/font.php?font_familly=' . $default_font->font_family) }}">
@else
<link rel="stylesheet" id="colorr"
href="{{ asset('assets/front/css/font.php?font_familly=' . 'Open Sans') }}">
@endif
@stack('css')
<!--favicon-->
<link rel="shortcut icon" href="{{ asset('assets/images/' . $gs->favicon) }}">
</head>
<body>
<!-- header start -->
@include('partials.front.navbar')
<!-- header end -->
<!-- faq section end -->
@yield('content')
<!-- footer section start -->
@include('partials.front.footer')
@include('cookie-consent::index')
<!-- Modal -->
<div class="modal fade" id="modal-apply">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header bg--section">
<h5 class="modal-title loan-title m-0">@lang('Basic')</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<form action="{{ route('user.loan.amount') }}" method="post">
@csrf
<div class="modal-body">
<div class="pt-3 pb-4">
<label for="amount" class="form-label">@lang('Amount')</label>
<div class="input-group input--group">
<input type="number" name="amount" class="form-group-input form-control form--control"
placeholder="0.00" id="amount">
<button type="button" class="input-group-text">{{ $currency->name }}</button>
</div>
<input type="hidden" name="planId" id="planId" value="">
</div>
</div>
<div class="modal-footer bg--section">
<button type="button" class="btn shadow-none btn--danger"
data-bs-dismiss="modal">@lang('Close')</button>
<button type="submit" class="btn shadow-none btn--success">@lang('Proceed')</button>
</div>
</form>
</div>
</div>
</div>
<!-- Modal -->
<!-- Modal -->
<div class="modal fade" id="modal-pension">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header bg--section">
<h5 class="modal-title loan-title m-0">@lang('Basic')</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<form action="{{ route('user.fdr.amount') }}" method="post">
@csrf
<div class="modal-body">
<div class="pt-3 pb-4">
<label for="amount" class="form-label">@lang('Amount')</label>
<div class="input-group input--group">
<input type="number" name="amount" class="form-group-input form-control form--control"
placeholder="0.00" id="amount">
<button type="button" class="input-group-text">{{ $currency->name }}</button>
</div>
<input type="hidden" name="planId" id="fdrplan" value="">
</div>
</div>
<div class="modal-footer bg--section">
<button type="button" class="btn shadow-none btn--danger"
data-bs-dismiss="modal">@lang('Close')</button>
<button type="submit" class="btn shadow-none btn--success">@lang('Proceed')</button>
</div>
</form>
</div>
</div>
</div>
<!-- Modal -->
<!-- footer section end-->
<!--Esential Js Files-->
<script src="{{ asset('assets/front') }}/js/jquery.min.js"></script>
<script src="{{ asset('assets/front') }}/js/owl-slider.js"></script>
<script src="{{ asset('assets/front') }}/js/wow.js"></script>
<script src="{{ asset('assets/front') }}/js/waypoints.min.js"></script>
<script src="{{ asset('assets/front') }}/js/counterup.min.js"></script>
<script src="{{ asset('assets/front') }}/js/bootstrap.bundle.min.js"></script>
<script src="{{ asset('assets/front/js/toastr.min.js') }}"></script>
<script src="{{ asset('assets/front/js/notify.js') }}"></script>
<script src="{{ asset('assets/front') }}/js/script.js"></script>
<script src="{{ asset('assets/front') }}/js/custom.js"></script>
<script>
'use strict';
let mainurl = '{{ url('/') }}';
</script>
<script>
'use strict';
@if (Session::has('message'))
toastr.options = {
"closeButton": true,
"progressBar": true
}
toastr.success("{{ session('message') }}");
@endif
@if (Session::has('error'))
toastr.options = {
"closeButton": true,
"progressBar": true
}
toastr.error("{{ session('error') }}");
@endif
@if (Session::has('info'))
toastr.options = {
"closeButton": true,
"progressBar": true
}
toastr.info("{{ session('info') }}");
@endif
@if (Session::has('warning'))
toastr.options = {
"closeButton": true,
"progressBar": true
}
toastr.warning("{{ session('warning') }}");
@endif
</script>
<script>
'use strict';
$('.apply-loan').on('click', function() {
let id = $(this).data('id');
let title = $(this).data('title');
$('#planId').val(id);
$('.loan-title').text(title);
});
$('.apply-pension').on('click', function() {
let id = $(this).data('id');
let title = $(this).data('title');
$('#fdrplan').val(id);
$('.loan-title').text(title);
});
</script>
@stack('js')
</body>
</html>