File: /var/www/html/spion/resources/views/front/partial/footer.blade.php
<footer>
<div class="container">
<div class="row">
<div class="col-lg-4 col-md-4 col-sm-12 col-12">
{{-- <img width="" height="50" src="img/logo-white-trnsprnt.png" alt=""> --}}
<a>
@php
// Fetch the logo URLs
[
'website_logo' => $websiteLogoUrl,
'website_footer_logo' => $footerLogoUrl,
] = App\Models\Setting::getLogoUrl();
@endphp
@if ($footerLogoUrl)
<img src="{{ $footerLogoUrl }}" alt="Website Logo" height="50" alt="">
@else
<img src="{{ asset('assets/front/website/img/logo-orbi-white-transparent.png') }}"
alt="Default Logo" height="50">
@endif
</a>
<br><br>
@if (isset($website_description) && $website_description)
<p>{{ $website_description }}</p>
@else
<h4>Create A <i style="font-weight: normal;color: #ff5a94;">Stunning</i>
Website Now.</h4>
@endif
</div>
<div class="col-lg-4 col-md-4 col-sm-12 col-12">
<h4>Link</h4>
<p><a href="">Our Services</a></p>
<p><a href="">Features</a></p>
<p><a href="">Why Choose Us</a></p>
<p><a href="">How It Works</a></p>
</div>
<div class="col-lg-4 col-md-4 col-sm-12 col-12">
<h4>Get In Touch</h4>
<div class="footer-info">
@if (isset($website_phone_number) && $website_phone_number)
<p><i class="fas fa-phone-alt"></i> (+91){{ $website_phone_number }}</p>
@else
<p><i class="fas fa-phone-alt"></i>(888)2345-6789</p>
@endif
@if (isset($website_email) && $website_email)
<p><i class="fas fa-envelope"></i> {{ $website_email }}</p>
@else
<p><i class="fas fa-envelope"></i> [email protected] </p>
@endif
</div>
<div class="footer-icons">
<a href="{{ $facebook_url }}"><i class="fab fa-facebook-f"></i></a>
<a href="{{ $instagram_url }}"><i class="fab fa-instagram"></i></a>
<a href="{{ $twitter_url }}"><i class="fab fa-twitter"></i></a>
</div>
</div>
</div>
</div>
</footer>
<section class="footer-text">
<div class="container">
<div class="row">
<div class="col-12">
<div class="footer-bottom">
<div class="footer-bottom-text">
<p>Privacy Policy | All rights reserved</p>
</div>
<div class="footer-bottom-text-1">
<p>Powered By
{{-- <a href="https://inclusionsoft.com/" target="_blank"><img
src="img/inclusion-logo-white.png" alt="" width="100"></a></p> --}}
<img src="{{ asset('assets/front/website/img/inclusion-logo-white.png') }}" height="25"
alt="">
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Modal btn2 -->
<div class="modal fade" id="exampleModal0" tabindex="-1" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLabel">LOGIN</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<form method="POST" action="{{ route('user.submit.login') }}" id="loginForm">
@csrf
<div class="col-md-12">
<label for="email">Email</label>
<input class="form-control" type="email" name="email" placeholder="E-mail Address"
required><br>
<label for="password">Password</label>
<input class="form-control" type="password" name="password" placeholder="Enter password"
required>
</div>
<input type="hidden" id="next_request" name="next_request" value="">
<div class="form-button mt-3">
<button type="submit" class="btn btn-primary">Login</button>
</div>
</form>
</div>
</div>
</div>
</div>
<style>
.error {
color: red;
/* Red color for error messages */
font-size: 0.7rem;
margin-top: 5px;
}
</style>
<!-- form Modal btn1 step-1 -->
<div class="modal fade" id="exampleModal" tabindex="-1" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLabel">REGISTRATION</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<div class="step-1">
<div class="form-body">
<form method="POST" action="{{ route('user.submit.register') }}" id="registerForm">
@csrf
<div class="col-md-12">
<label for="first_name">First Name</label>
<input class="form-control" type="text" name="first_name" placeholder="First Name"
required>
<br>
<label for="last_name">Last Name</label>
<input class="form-control" type="text" name="last_name" placeholder="Last Name"
required>
<br>
<label for="email">Email</label>
<input class="form-control" type="email" name="email"
placeholder="E-mail Address" required>
<br>
<label for="password">Password</label>
<input class="form-control" type="password" name="password"
placeholder="Enter password" required>
{{-- <label for="password_confirmation">Confirm Password</label>
<input class="form-control" type="password" name="password_confirmation" placeholder="Confirm password" required> --}}
</div>
<div class="form-button mt-3">
<button id="submit" type="submit" class="btn btn-primary">Register</button>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</div>