Raffales-LMS/resources/views/frontend/nz/index.blade.php
2024-04-16 15:43:24 +05:45

484 lines
30 KiB
PHP

<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Access Education Consultancy</title>
<link rel="stylesheet" href="{{ asset('assets/nz/css/style.css') }}">
<link rel="stylesheet" href=" {{ asset('assets/nz/css/owl.carousel.min.css') }}">
<link href="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/assets/owl.carousel.min.css" rel="stylesheet" />
<link rel="stylesheet" href=" {{ asset('assets/nz/css/owl.theme.default.min.css') }}">
<link rel="stylesheet" href="{{ asset('assets/nz/css/custom.scss') }}">
<link rel="stylesheet" href=" {{ asset('assets/nz/css/bootstrap.min.css') }}">
<link href=" {{ asset('assets/nz/css/select2.min.css') }}" rel="stylesheet" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/uikit@3.15.18/dist/css/uikit.min.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.1/css/all.min.css" integrity="sha512-MV7K8+y+gLIBoVD59lQIYicR65iaqukzvf/nwasF0nqhPay5w/9lJmVM2hMDcnK1OnMGCdVK+iQrJ7lzPJQd1w==" crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
<body>
<nav class="navbar fixed-top d-flex justify-content-center align-items-center navbar-expand-lg" id="navbar">
<div class="container">
<a class="navbar-brand" href="index.php">
<img id="logo_main" src="{{ asset('assets/nz/img/access.png ') }}" class="img-fluid" alt=""> </a>
<button class="navbar-toggler" type="button" data-bs-toggle="offcanvas" data-bs-target="#offcanvasDarkNavbar" aria-controls="navbarTogglerDemo01" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"><i class="fa-solid fa-bars"></i></span>
</button>
<div class="collapse navbar-collapse d-flex justify-content-md-end d-none d-lg-block" id="navbarTogglerDemo01">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" aria-current="page" href="#why">Why Us</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#str">Stories</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#tst">Testimonials</a>
</li>
<li class="nav-item">
<a class="custom-btn nav-link" aria-current="page" href="#frm">Get Started</a>
</li>
</ul>
</div>
<div class="offcanvas offcanvas-end text-bg-dark d-xs-block d-sm-block d-md-none" tabindex="-1" id="offcanvasDarkNavbar" aria-labelledby="offcanvasDarkNavbarLabel">
<div class="offcanvas-header">
<a class="navbar-brand" href="index.php">
<img id="logo_main" src="{{ asset('assets/nz/img/access.png ') }}" class="img-fluid" alt=""> </a> <button type="button" class="btn-close" data-bs-dismiss="offcanvas" aria-label="Close"></button>
</div>
<div class="offcanvas-body">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" aria-current="page" href="about-page.php">Why Us</a>
</li>
<li class="nav-item">
<a class="nav-link" href="blog-page.php">Stories</a>
</li>
<li class="nav-item">
<a class="nav-link" href="offers-page.php">Testimonials</a>
</li>
<li class="nav-item pt-3">
<a href="booking-form.php" class="btn custom-btn" role="button" data-bs-toggle="modal" data-bs-target="#exampleModal">Register Now</a>
</li>
</ul>
</div>
</div>
</nav>
<section id="frm" class="landing section_padding2" style="background-image: url('{{ asset('assets/nz/img/main_bg2.png ') }}'); background-repeat: no-repeat; background-position: 90% 100%; background-size: cover;">
<div class="container">
<div class="main_image row d-flex align-items-center">
<div class="col-md-6">
<img src=" {{ asset('assets/nz/img/newzealand.png') }}" alt="" class="img-fluid">
</div>
<div class="col-md-6" uk-scrollspy="cls: uk-animation-slide-right-medium; repeat: true" tabindex="0">
<p class="text-center fw-bold fs-4 text-secondary text-capitalize ">Register Right Away !!</p>
<form method="GET" id="enquiry_form" name="enq" action="{{ route('customerform.store',['headers'=> $campaign->name, 'user_agent'=> $campaign->id]) }}" class="p-3 bg-white rounded rounded-2">
@csrf
@if(isset($campaign))
<input class="form-control" type="hidden" name="campaign_id" id="" value="{{$campaign->id}}">
@endif
<input class="form-control" type="hidden" name="source" id="" value="registration">
<div class="row mb-3">
<div class="form-group col-12">
<input class="form-control" required="required" placeholder="Enter Name" id="first-name" class="form-control" name="name" type="text">
</div>
</div>
<div class="row mb-3">
<div class="form-group col-8">
<input class="form-control" required="required" placeholder="Enter Email" id="email" class="form-control" name="email" type="email">
</div>
<div class="form-group col-4">
<input class="form-control" required="required" placeholder="Enter Phone" id="phone" class="form-control" name="phone" type="number">
</div>
</div>
<div class="row mb-3">
<div class="form-group col-4">
<select name="highest_qualification" class="form-control">
<option value="" disabled selected>Select Qualification</option>
@foreach ($qualifications as $qualification)
<option value="{{$qualification->name}}">{{$qualification->name}}</option>
@endforeach
</select>
</div>
<div class="form-group col-4">
<input class="form-control" placeholder="Grade" class="form-control" name="highest_grade" type="text">
</div>
<div class="form-group col-4">
<input class="form-control" placeholder="Stream" class="form-control" name="highest_stream" type="text">
</div>
</div>
<div class="row mb-3">
<div class="form-group col-6">
<select name="test_name" class="form-control">
<option value="" disabled selected>Select Test Preparation</option>
@foreach ($preparations as $preparation)
<option value="{{$preparation->name}}">{{$preparation->name}}</option>
@endforeach
</select>
</div>
<div class="form-group col-6">
<input placeholder="Enter Test Score " class="form-control" name="test_score" type="text">
</div>
</div>
{{-- <div class="row mb-3">
<div class="form-group col-md-12">
<select class="form-select form-control" name="preffered_location" aria-label="Default select example">
<option selected disabled>Registering For</option>
<option value="baneshwor">NZ Admission Day New Baneshor (24 August)</option>
<option value="biratnagar">NZ Admission Day Biratnagar (25 August)</option>
<option value="pokhara">NZ Admission Day Pokhara (26 August)</option>
<option value="chitwan">NZ Admission Day Chitwan (28 August)</option>
<option value="butwal">NZ Admission Day Butwal (29 August)</option>
<option value="putalisadak">NZ Admission Day Putalisadak (30 August)</option>
</select>
</div>
</div> --}}
@if(!empty($campaign_course[0]))
<div class="row mb-3">
<div class="form-group col-6">
<select name="intrested_course[]" data-placeholder="Please Select Intrested Course" class="form-control offerd_course mt-1 mt-2" multiple>
@foreach ($campaign_course as $course)
<option value="{{$course}}">{{$course}}</option>
@endforeach
</select>
</div>
</div>
@endif
<div class="d-flex justify-content-center align-center">
<button class="col-12 custom-btn" type="submit" title="Submit Your Message!" class="btn btn-success" name="submit" value="Submit">Submit</button>
</form>
</div>
</div>
</div>
</section>
<div class="section_padding"></div>
<section class="why-us" id="why">
<div class="container">
<p class="custom-text2 fw-bold">- What We Offer</p>
<p class="m-0 fs-3 fw-bold mb-5 text-uppercase custom-text text-uppercase">Why Choose US</p>
<div class="row g-3 d-flex align-items-center justify-content-center" uk-scrollspy="cls: uk-animation-slide-bottom-small; repeat: true" tabindex="0">
<div class="col-md-12">
<div class="owl-carousel owl-theme owl-loaded" id="why-us">
<div class="owl-stage-outer">
<div class="owl-stage">
<div class="owl-item text-center">
<div class="card p-3 service border-0">
<img src="{{ asset('assets/nz/img/high_edu.jpg ') }}" alt="">
<p class="m-0 mt-3 mb-3 fw-bold text-primary text-uppercase ">High-quality education</p>
<p class="m-0 mb-3">New Zealand is known for its high-quality education system, with a strong focus on practical, hands-on learning. The country has eight universities and a number of other tertiary institutions, all of which are recognized internationally for their academic excellence.
</p>
<!-- <a class="btn btn-success">Read More</a> -->
</div>
</div>
<div class="owl-item text-center">
<div class="card p-3 service border-0">
<img src="{{ asset('assets/nz/img/career.jpg ') }}" alt="">
<p class="m-0 mt-3 mb-3 fw-bold text-primary text-uppercase ">High standard of living</p>
<p class="m-0 mb-3">New Zealand has a high standard of living, with excellent healthcare, transportation, and infrastructure. It is a great place to live, work, and raise a family, with a strong work-life balance and a laid-back, friendly culture.
</p>
<!-- <a class="btn btn-success">Read More</a> -->
</div>
</div>
<div class="owl-item text-center">
<div class="card p-3 service border-0">
<img src="{{ asset('assets/nz/img/scholarship.jpg ') }}" alt="">
<p class="m-0 mt-3 mb-3 fw-bold text-primary text-uppercase ">Affordable tuition fees</p>
<p class="m-0 mb-3">Compared to other popular study destinations, such as the United States or the United Kingdom, tuition fees in New Zealand are relatively affordable. International students are also eligible for scholarships and financial aid to help offset the cost of tuition.
</p>
<!-- <a class="btn btn-success">Read More</a> -->
</div>
</div>
</div>
</div>
</div>
</div>
<!-- <div class="col-md-6">
<img src="{{ asset('assets/nz/img/why_us.jpg ') }}" alt="">
</div> -->
</div>
<!--
<p class="m-0 fs-3 fw-bold text-center mb-5 text-uppercase text-primary text-uppercase">Why Choose Us</p>
<div class="row g-md-4 g-3 d-flex align-items-center text-dark" uk-scrollspy="cls: uk-animation-slide-bottom-medium; repeat: true" tabindex="0">
<div class="col-md-3 text-center">
<div class="card p-3 service border-0">
<img src="assets/img/why_us.jpg" alt="">
<p class="m-0 mt-3 mb-3 fw-bold text-primary text-uppercase ">Plan Travel</p>
<p class="m-0 mb-3">Dolor enim dolor labore velit nulla sit exercitation proident esse culpa commodo n irure esse velit commodo.
</p>
<a class="btn btn-success">Read More</a>
</div>
</div>
<div class="col-md-3 text-center">
<div class="card p-3 service border-0">
<img src="assets/img/why_us.jpg" alt="">
<p class="m-0 mt-3 mb-3 fw-bold text-primary text-uppercase ">Plan Travel</p>
<p class="m-0 mb-3">Dolor enim dolor labore velit nulla sit exercitation proident esse culpa commodo n irure esse velit commodo.
</p>
<a class="btn btn-success">Read More</a>
</div>
</div>
<div class="col-md-3 text-center">
<div class="card p-3 service border-0">
<img src="assets/img/why_us.jpg" alt="">
<p class="m-0 mt-3 mb-3 fw-bold text-primary text-uppercase ">Plan Travel</p>
<p class="m-0 mb-3">Dolor enim dolor labore velit nulla sit exercitation proident esse culpa commodo n irure esse velit commodo.
</p>
<a class="btn btn-success">Read More</a>
</div>
</div>
<div class="col-md-3 text-center">
<div class="card p-3 service border-0">
<img src="assets/img/why_us.jpg" alt="">
<p class="m-0 mt-3 mb-3 fw-bold text-primary text-uppercase ">Plan Travel</p>
<p class="m-0 mb-3">Dolor enim dolor labore velit nulla sit exercitation proident esse culpa commodo n irure esse velit commodo.
</p>
<a class="btn btn-success">Read More</a>
</div>
</div>
</div>
</div> -->
</section>
<div class="section_padding"></div>
<section class="why-us" id="str">
<div class="container">
<p class="custom-text2 fw-bold text-center">- Our Successful Clients</p>
<p class="m-0 fs-3 fw-bold text-center mb-3 text-uppercase custom-text text-uppercase">Success Stories</p>
<section class="testimonials pt-3" id="testimonials" uk-scrollspy="cls: uk-animation-slide-bottom-small; repeat: true" tabindex="0">
<div class="container ">
<div class="accordion height" id="accordionExample">
<div>
<div class="p-3 ">
<ul style="list-style-type: none;" class="" uk-scrollspy="cls: uk-animation-slide-bottom-small; repeat: true" tabindex="0">
<li class="">
<div class="card p-3" data-toggle="collapse" data-target="#collapseOne" aria-expanded="true" aria-controls="collapseOne">
<div class="d-flex flex-row align-items-center">
<img src="{{ asset('assets/nz/img/user.png ') }}" width="50" height="50" class="rounded rounded-circle me-3">
<div class="d-flex flex-column ml-2">
<span class="fw-bold">Mamita Ale</span>
<span>Student</span>
</div>
</div>
</div>
</li>
<li class="">
<div class="card p-3" data-toggle="collapse" data-target="#collapseTwo" aria-expanded="false" aria-controls="collapseTwo">
<div class="d-flex flex-row align-items-center">
<img src="{{ asset('assets/nz/img/user.png ') }}" width="50" height="50" class="rounded rounded-circle me-3">
<div class="d-flex flex-column ml-2">
<span class="fw-bold">Tika Devi Pun</span>
<span>Student</span>
</div>
</div>
</div>
</li>
</ul>
</div>
</div>
<div class="p-3 pt-0 testimonials-margin">
<div id="collapseOne" class="collapse show" aria-labelledby="headingOne" data-parent="#accordionExample">
<div class="card-body">
<div class="row g-3 pt-3 d-flex align-items-center">
<div class="col-md-6">
<p class="fw-bold fs-5 custom-text text-capitalize"> AEN owes respect.</p>
<p>The long-woven dream of my parents to send me abroad for further studies was brought into reality by the responsible handling of the AEN. I feel I would not have landed in this country had there been no counselling efforts of the experienced counsellors of the AEN.</p>
</div>
<div class="col-md-6" uk-scrollspy="cls: uk-animation-slide-bottom-right; repeat: true" tabindex="0">
<img class="img-fluid" src="{{ asset('assets/nz/img/scholarship.jpg ') }}" alt="">
</div>
</div>
</div>
</div>
<div id="collapseTwo" class="collapse" aria-labelledby="headingTwo" data-parent="#accordionExample">
<div class="card-body">
<div class="row g-3 pt-3 d-flex align-items-center">
<div class="col-md-6">
<p class="fw-bold fs-5 custom-text text-capitalize">You will ever be remembered.</p>
<p>Abroad studies was like a dream for me. I never thought of getting the dream turned into reality. Thanks to the invaluable guidance and counselling of the qualified counsellors, motivators and instructors of AEN. Your proper guidance and instructions made me achieve my dream. </p>
</div>
<div class="col-md-6" uk-scrollspy="cls: uk-animation-slide-right-small; repeat: true" tabindex="0">
<img class="img-fluid" src="{{ asset('assets/nz/img/high_edu.jpg') }}" alt="">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
</section>
<!-- <div class="section_padding"></div> -->
<!-- <section class="hero-section">
<div class="container-fluid p-0">
<img class="img-fluid" src="{{ asset('assets/nz/img/why-us.jpg') }}" alt="">
</div>
</section>
<div class="section_padding"></div>
<section class="testimonials" id="tst">
<div class="container">
<p class="fw-bold text-center custom-text2">- What Others Say</p>
<p class="m-0 fs-3 fw-bold mb-3 text-uppercase text-center custom-text text-uppercase">Clients Testimonials</p>
<section class="testimonials">
<div class="container">
<div class="row">
<div class="col-sm-12">
<div id="customers-testimonials" class="owl-carousel">
<div class="item text-center">
<div class="shadow-effect">
<img class="rounded-circle" src="{{ asset('assets/nz/img/user.png') }}" alt="">
<p class=" fw-bold custom-text fs-5 testimonial-name mb-0">EMILIANO AQUILANI</p>
<p class="fw-bold mt-1">Student, AAA</p>
<p><i class="fa-solid fa-quote-left me-2"></i> Dramatically maintain clicks-and-mortar solutions without functional solutions. Completely synergize resource taxing relationships via premier niche markets. Professionally cultivate.</p>
</div>
</div>
<div class="item text-center">
<div class="shadow-effect">
<img class="rounded-circle" src="{{ asset('assets/nz/img/user.png') }}" alt="">
<p class=" fw-bold custom-text fs-5 testimonial-name mb-0">EMILIANO AQUILANI</p>
<p class="fw-bold mt-1 ">Student, AAA</p>
<p><i class="fa-solid fa-quote-left me-2"></i> Dramatically maintain clicks-and-mortar solutions without functional solutions. Completely synergize resource taxing relationships via premier niche markets. Professionally cultivate.</p>
</div>
</div>
<div class="item text-center">
<div class="shadow-effect">
<img class="rounded-circle" src="{{ asset('assets/nz/img/user.png') }}" alt="">
<p class=" fw-bold custom-text fs-5 testimonial-name mb-0">EMILIANO AQUILANI</p>
<p class="fw-bold mt-1 ">Student, AAA</p>
<p><i class="fa-solid fa-quote-left me-2"></i> Dramatically maintain clicks-and-mortar solutions without functional solutions. Completely synergize resource taxing relationships via premier niche markets. Professionally cultivate.</p>
</div>
</div>
<div class="item text-center">
<div class="shadow-effect">
<img class="rounded-circle" src="{{ asset('assets/nz/img/user.png') }}" alt="">
<p class=" fw-bold custom-text fs-5 testimonial-name mb-0">EMILIANO AQUILANI</p>
<p class="fw-bold mt-1 ">Student, AAA</p>
<p><i class="fa-solid fa-quote-left me-2"></i> Dramatically maintain clicks-and-mortar solutions without functional solutions. Completely synergize resource taxing relationships via premier niche markets. Professionally cultivate.</p>
</div>
</div>
<div class="item text-center">
<div class="shadow-effect">
<img class="rounded-circle" src="{{ asset('assets/nz/img/user.png') }}" alt="">
<p class=" fw-bold custom-text fs-5 testimonial-name mb-0">EMILIANO AQUILANI</p>
<p class="fw-bold mt-1 ">Student, AAA</p>
<p><i class="fa-solid fa-quote-left me-2"></i>Dramatically maintain clicks-and-mortar solutions without functional solutions. Completely synergize resource taxing relationships via premier niche markets. Professionally cultivate.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
</section> -->
<script src="{{ asset('assets/nz/js/jquery.min.js ') }}"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/mdb-ui-kit/3.3.0/mdb.min.js"></script>
<script src="{{ asset('assets/nz/js/select2.min.js ') }}"></script>
<script src="{{ asset('assets/nz/js/custom.js ') }}"></script>
<script src=" {{ asset('assets/nz/js/owl.carousel.min.js') }}"></script>
<script src="https://cdn.jsdelivr.net/npm/uikit@3.15.18/dist/js/uikit.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/uikit@3.15.18/dist/js/uikit-icons.min.js"></script>
<script src=" {{ asset('assets/nz/js/bootstrap.min.js') }}"></script>
<script src=" {{ asset('assets/nz/js/bootstrap.bundle.min.js') }}"></script>
<script src="{{ asset('assets/nz/js/index.bundle.min.js ') }}"></script>
</body>
<section class="footer pt-5">
<!-- Footer -->
<footer class="text-center text-lg-start bg-light text-muted">
<!-- Section: Social media -->
<section class=" d-flex justify-content-center p-4 border-bottom">
<!-- Left -->
<!-- Right -->
<div>
<a href="fb" class="me-4 text-reset">
<i class="fab fa-facebook-f"></i>
</a>
<a href="tw" class="me-4 text-reset">
<i class="fab fa-twitter"></i>
</a>
<a href="go" class="me-4 text-reset">
<i class="fab fa-google"></i>
</a>
<a href="ins" class="me-4 text-reset">
<i class="fab fa-instagram"></i>
</a>
<a href="li" class="me-4 text-reset">
<i class="fab fa-linkedin"></i>
</a>
</div>
<!-- Right -->
</section>
<!-- Section: Social media -->
<section class="bg-light" style="background-image: url('assets/img/footer-bg.png'); background-repeat: no-repeat; background-position: 100% 100%; background-size: contain;">
<div class="container pt-5 pb-5">
<div class="row d-flex justify-content-between">
<div class="col-md-6">
<img class="img-fluid" src="{{ asset('assets/nz/img/access.png ') }}" alt="" height="100%" width="80%">
<p class="m-0 mt-3">Dolor enim dolor labore velit nulla sit exercitation proident esse culpa commodo n irure esse velit commodo.
</div>
<div class="col-md-6">
<p class="fs-5 text-uppercase fw-bold">Contact Us</p>
<p><span><i class="fa-solid fa-square-phone me-2"></i></span> Phone Number: +151546541651</p>
<p><span><i class="fa-solid fa-envelope me-2"></i></span> Gmail: access@gmail.com</p>
<p><span><i class="fa-solid fa-location-dot me-2"></i></span> Location: Singha Durbar, Kathmandu</p>
</div>
<!-- <div class="col-md-4">
<p class="fs-5 text-uppercase fw-bold">Subscribe Us</p>
<form class="row g-3">
<div class="col-md-12">
<input type="email" class="form-control" id="inputPassword2" placeholder="Type Your Email">
</div>
<div class="col-md-12">
<div class="d-flex justify-content-center align-center">
<button class="col-12 custom-btn" type="submit" title="Suscribe Now !" class="btn btn-success" name="submit" value="Submit">Subscribe Now</button>
</div>
</div>
</form>
</div> -->
</div>
</div>
</section>
<!-- Copyright -->
</footer>
<!-- Footer -->
</footer>
</section>
</html>