first commit
This commit is contained in:
512
resources/views/frontend/canada/index.blade.php
Normal file
512
resources/views/frontend/canada/index.blade.php
Normal file
@ -0,0 +1,512 @@
|
||||
<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/canada/css/style.css') }}">
|
||||
<link rel="stylesheet" href=" {{ asset('assets/canada/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/canada/css/owl.theme.default.min.css') }}">
|
||||
<link rel="stylesheet" href="{{ asset('assets/canada/css/custom.scss') }}">
|
||||
<link rel="stylesheet" href=" {{ asset('assets/canada/css/bootstrap.min.css') }}">
|
||||
<link href=" {{ asset('assets/canada/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/canada/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/canada/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 btn-success" 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/canada/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/canada/img/canada.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">canada Admission Day New Baneshor (24 August)</option>
|
||||
<option value="biratnagar">canada Admission Day Biratnagar (25 August)</option>
|
||||
<option value="pokhara">canada Admission Day Pokhara (26 August)</option>
|
||||
<option value="chitwan">canada Admission Day Chitwan (28 August)</option>
|
||||
<option value="butwal">canada Admission Day Butwal (29 August)</option>
|
||||
<option value="putalisadak">canada 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>
|
||||
</div>
|
||||
</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-6">
|
||||
<img src="{{ asset('assets/canada/img/why_us.jpg ') }}" alt="">
|
||||
</div> -->
|
||||
<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/canada/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 top study destinations, such as the United States or the United Kingdom, tuition fees in Canada are relatively affordable. International students are also eligible for scholarships and bursaries, which can help to offset the cost of tuition. </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/canada/img/high_edu.jpg ') }}" alt="">
|
||||
<p class="m-0 mt-3 mb-3 fw-bold text-primary text-uppercase ">Possibility of immigration</p>
|
||||
<p class="m-0 mb-3">Canada has a number of immigration programs that allow international students to stay and work in the country after they graduate. This can be a great opportunity for students who are interested in pursuing a career in Canada. </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/canada/img/scholarship.jpg ') }}" alt="">
|
||||
<p class="m-0 mt-3 mb-3 fw-bold text-primary text-uppercase ">Welcoming environment</p>
|
||||
<p class="m-0 mb-3">Canada is considered to be one of the safest and most welcoming countries in the world. It is a multicultural society that values diversity and inclusion, and has a strong reputation for being a peaceful and accepting nation.
|
||||
</p>
|
||||
<!-- <a class="btn btn-success">Read More</a> -->
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</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/canada/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">Prabin Bajaj</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/canada/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">Subodh Muni Shakya</span>
|
||||
<span>Student</span>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="">
|
||||
<div class="card p-3" data-toggle="collapse" data-target="#collapseThree" aria-expanded="false" aria-controls="collapseThree">
|
||||
|
||||
<div class="d-flex flex-row align-items-center">
|
||||
|
||||
<img src="{{ asset('assets/canada/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">Smriti Khatri</span>
|
||||
<span>Student</span>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="p-3 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" uk-scrollspy="cls: uk-animation-slide-bottom-right; repeat: true" tabindex="0">
|
||||
<img class="img-fluid" src="{{ asset('assets/canada/img/scholarship.jpg ') }}" alt="">
|
||||
</div>
|
||||
<div class="col-md-6">
|
||||
<p class="fw-bold fs-5 custom-text text-capitalize"> The people here are so friendly and welcoming.</p>
|
||||
<p>Living and studying in Canada has been a life-changing experience. The people here are so friendly and welcoming, and the education system is top-notch. I've had the opportunity to work with some of the leading researchers in my field, which has been an incredible experience.</p>
|
||||
</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">The education system is top-notch</p>
|
||||
<p>Canada is an amazing country to study and live in. The people here are so friendly and welcoming, and the education system is top-notch. I've had the opportunity to work with some of the leading researchers in my field, and I've also had the chance to explore the natural beauty of the country. </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/canada/img/high_edu.jpg') }}" alt="">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="collapseThree" class="collapse" aria-labelledby="headingThree" data-parent="#accordionExample">
|
||||
<div class="card-body">
|
||||
<div class="row g-3 pt-3 d-flex align-items-center">
|
||||
<div class="col-md-6" uk-scrollspy="cls: uk-animation-slide-right-small; repeat: true" tabindex="0">
|
||||
<img class="img-fluid" src="{{ asset('assets/canada/img/scholarship.jpg') }}" alt="">
|
||||
</div>
|
||||
<div class="col-md-6">
|
||||
<p class="fw-bold fs-5 custom-text text-capitalize">Canada has been an incredible experience.</p>
|
||||
<p>Studying in Canada has been an incredible experience. The quality of education here is world-class, and the professors are so passionate about what they do. The country is also incredibly beautiful, with so many opportunities to explore nature and the outdoors. </p>
|
||||
</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/canada/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/canada/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/canada/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/canada/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/canada/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/canada/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/canada/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/canada/js/select2.min.js ') }}"></script>
|
||||
<script src="{{ asset('assets/canada/js/custom.js ') }}"></script>
|
||||
<script src=" {{ asset('assets/canada/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/canada/js/bootstrap.min.js') }}"></script>
|
||||
<script src=" {{ asset('assets/canada/js/bootstrap.bundle.min.js') }}"></script>
|
||||
<script src="{{ asset('assets/canada/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/canada/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>
|
171
resources/views/frontend/customer/form.blade.php
Normal file
171
resources/views/frontend/customer/form.blade.php
Normal file
@ -0,0 +1,171 @@
|
||||
@extends('frontend.layouts.template')
|
||||
|
||||
@section('title', 'Enquiry Form')
|
||||
|
||||
@section('content')
|
||||
<div class="container login-section py-5">
|
||||
<div class="row">
|
||||
<div class="col-md-3">
|
||||
<img src="{{ asset('images/access.png') }}" alt="" class="img-fluid">
|
||||
</div>
|
||||
<div class="col-md-9">
|
||||
<!--h2 class="login-right-title pt-5">
|
||||
@if(isset($campaign))
|
||||
{{$campaign->name}}
|
||||
@endif
|
||||
</h2-->
|
||||
</div>
|
||||
</div>
|
||||
<div class="row gx-5">
|
||||
<div class="col-lg-7 col-md-8">
|
||||
<div class="login-form bg-light mt-4 pb-4">
|
||||
@if(isset($campaign) && $campaign->banner)
|
||||
<img class="img-fluid" src="{{ asset($campaign->banner_path)}}"/>
|
||||
@endif
|
||||
@if(Illuminate\Support\Facades\Session::has('success'))
|
||||
<div class="alert alert-success mt-3 mb-3" id="alert_message">
|
||||
{{Illuminate\Support\Facades\Session::get('success')}}
|
||||
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
|
||||
<span aria-hidden="true">×</span>
|
||||
</button>
|
||||
</div>
|
||||
@endif
|
||||
<h5 class="login_welcome text-center pt-4 pb-1">Register now for Appointments</h5>
|
||||
<form method="GET" id="enquiry_form" name="enq" action="{{ route('customerform.store',['headers'=> $campaign->name, 'user_agent'=> $campaign->id]) }}" class="p-3">
|
||||
@csrf
|
||||
@if(isset($campaign))
|
||||
<input type="hidden" name="campaign_id" id="" value="{{$campaign->id}}">
|
||||
@endif
|
||||
<input type="hidden" name="source" id="" value="registration">
|
||||
<div class="row">
|
||||
<div class="form-group col-12">
|
||||
<input required="required" placeholder="Enter Name" id="first-name" class="form-control"
|
||||
name="name" type="text">
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="form-group col-8">
|
||||
<input required="required" placeholder="Enter Email" id="email" class="form-control"
|
||||
name="email" type="email">
|
||||
</div>
|
||||
|
||||
<div class="form-group col-4">
|
||||
<input required="required" placeholder="Enter Phone" id="phone" class="form-control"
|
||||
name="phone" type="number">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="row">
|
||||
|
||||
<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 placeholder="Grade" class="form-control"
|
||||
name="highest_grade" type="text">
|
||||
|
||||
</div>
|
||||
|
||||
<div class="form-group col-4">
|
||||
<input placeholder="Stream" class="form-control"
|
||||
name="highest_stream" type="text">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="row">
|
||||
<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">
|
||||
<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">
|
||||
<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="row">
|
||||
<div class="col-lg-12 justify-content-center align-center">
|
||||
<button type="submit" title="Submit Your Message!" class="btn btn-submit" name="submit"
|
||||
value="Submit">Submit</button>
|
||||
</div>
|
||||
|
||||
</form>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-5 col-md-4 d-flex align-items-center pl-5">
|
||||
<div class="login-right">
|
||||
|
||||
|
||||
<div class="login-right-list pt-4 ">
|
||||
@if(isset($campaign))
|
||||
|
||||
{!! $campaign->description !!}
|
||||
@endif
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@endsection
|
||||
|
||||
@section('page-specific-scripts')
|
||||
<script>
|
||||
$('.offerd_course').select2({
|
||||
});
|
||||
|
||||
setTimeout(() => {
|
||||
$('#alert_message').hide();
|
||||
}, 6000);
|
||||
|
||||
$('#enquiry_form').submit(function(){
|
||||
$(this).find(':input[type=submit]').prop('disabled', true);
|
||||
});
|
||||
</script>
|
||||
@endsection
|
41
resources/views/frontend/errors/403.blade.php
Normal file
41
resources/views/frontend/errors/403.blade.php
Normal file
@ -0,0 +1,41 @@
|
||||
@extends('layouts.admin.admin')
|
||||
@section('content')
|
||||
<div class="row">
|
||||
<div class="col-12">
|
||||
<div class="card">
|
||||
<div class="card-header">
|
||||
<div class="row">
|
||||
<div class="col-12">
|
||||
<h1 class="text-center font-weight-bolder" style="font-size: 7.3rem; poition:relative;">403</h1>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-12">
|
||||
<h4 class="text-center font-weight-bolder text-uppercase" style="font-size: 2.5rem; margin-top: -20px;">Forbidden</h4>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row my-4">
|
||||
<div class="col-12 text-center">
|
||||
<h6 class="text-center text-uppercase" style="font-size: 1.3rem;">Sorry, You are not allowed to perform this action.</h6>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="card-footer">
|
||||
<div class="row">
|
||||
<div class="col-12 text-center">
|
||||
<a href="{{route('dashboard')}}" class="btn btn-primary btn-lg dashboard-btn" style="margin-left: 15px;"><i class="fa fa-arrow-left mr-2" aria-hidden="true"></i>Back To Dashboard</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<style>
|
||||
.dashboard-btn:hover{
|
||||
color: #fff;
|
||||
background-color: #0d3447;
|
||||
border-color: #0d3447;
|
||||
}
|
||||
|
||||
</style>
|
||||
@endsection
|
22
resources/views/frontend/errors/404.blade.php
Normal file
22
resources/views/frontend/errors/404.blade.php
Normal file
@ -0,0 +1,22 @@
|
||||
@extends('frontend.layouts.app')
|
||||
@section('content')
|
||||
<!-- START SECTION BREADCRUMB -->
|
||||
|
||||
<!-- START SECTION 404 -->
|
||||
<section class="background_bg overlay_bg2 full_screen pt-5" style="background-image: url({{asset('assets/images/404_bg.jpg')}})">
|
||||
<div class="container h-100">
|
||||
<div class="row justify-content-center align-content-center h-100">
|
||||
<div class="col-md-6 col-sm-8">
|
||||
<div class="text-center">
|
||||
<div class="error_txt">404</div>
|
||||
<h4 class="text_danger">oops! Page Not Found!</h4>
|
||||
<h6>The page you were looking for could not be found.</h6>
|
||||
<a href="{{route('homepage')}}" class="btn btn-outline-black">Back To Home</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<!-- END SECTION 404 -->
|
||||
|
||||
@endsection
|
33
resources/views/frontend/errors/404.blade.php--
Normal file
33
resources/views/frontend/errors/404.blade.php--
Normal file
@ -0,0 +1,33 @@
|
||||
@extends('layouts.admin.admin')
|
||||
@section('content')
|
||||
<div class="row">
|
||||
<div class="col-12">
|
||||
<div class="card">
|
||||
<div class="card-header">
|
||||
<div class="row">
|
||||
<div class="col-12">
|
||||
<h1 class="text-center font-weight-bolder" style="font-size: 7.3rem; poition:relative;">404</h1>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-12">
|
||||
<h4 class="text-center font-weight-bolder text-uppercase" style="font-size: 2.5rem; margin-top: -20px;">Forbidden</h4>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row my-4">
|
||||
<div class="col-12 text-center">
|
||||
<h6 class="text-center text-uppercase" style="font-size: 1.3rem;">Sorry, You are not allowed to perform this action.</h6>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="card-footer">
|
||||
<div class="row">
|
||||
<div class="col-12 text-center">
|
||||
<a href="{{route('dashboard')}}" class="btn btn-primary btn-lg" style="margin-left: 15px;"><i class="fa fa-arrow-left mr-2" aria-hidden="true"></i>Back To Dashboard</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@endsection
|
66
resources/views/frontend/errors/503.blade.php
Normal file
66
resources/views/frontend/errors/503.blade.php
Normal file
@ -0,0 +1,66 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<title>@yield('title')</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta content="Premium Multipurpose Admin & Dashboard Template" name="description" />
|
||||
<meta content="Themesbrand" name="author" />
|
||||
|
||||
<!-- CSRF Token -->
|
||||
<meta name="csrf-token" content="{{ csrf_token() }}">
|
||||
|
||||
<!-- App favicon -->
|
||||
<link rel="shortcut icon" href="assets/images/favicon.ico">
|
||||
|
||||
{{-- <link href="assets/libs/metrojs/release/MetroJs.Full/MetroJs.min.css" rel="stylesheet" type="text/css" /> --}}
|
||||
<link href="{{asset('css/MetroJs.min.css')}}" id="app-style" rel="stylesheet" type="text/css" />
|
||||
|
||||
<!-- Bootstrap Css -->
|
||||
{{-- <link href="assets/css/bootstrap.min.css" id="bootstrap-style" rel="stylesheet" type="text/css" /> --}}
|
||||
<link href="{{asset('css/bootstrap.min.css')}}" id="app-style" rel="stylesheet" type="text/css" />
|
||||
|
||||
<!-- Icons Css -->
|
||||
{{-- <link href="assets/css/icons.min.css" rel="stylesheet" type="text/css" /> --}}
|
||||
<link href="{{asset('css/icons.min.css')}}" id="app-style" rel="stylesheet" type="text/css" />
|
||||
|
||||
<!-- App Css-->
|
||||
{{-- <link href="assets/css/app.min.css" id="app-style" rel="stylesheet" type="text/css" /> --}}
|
||||
<link href="{{asset('css/app.min.css')}}" id="app-style" rel="stylesheet" type="text/css" />
|
||||
|
||||
<!-- Sweet Alert-->
|
||||
<link href="{{asset('css/sweetalert2.min.css')}}" rel="stylesheet" type="text/css" />
|
||||
|
||||
<!-- Select2-->
|
||||
<link href="{{asset('css/select2.min.css')}}" rel="stylesheet" />
|
||||
|
||||
<!-- style-->
|
||||
<link href="{{asset('css/style.css')}}" rel="stylesheet" />
|
||||
|
||||
<link href="{{ asset('css/dropify.min.css') }}" rel="styleshet">
|
||||
|
||||
<!-- Toastr-->
|
||||
<link rel="stylesheet" href="{{ asset('css/toastr.min.css') }}">
|
||||
@yield('page-specific-styles')
|
||||
</head>
|
||||
<body>
|
||||
<div class="row" style="margin-top: 150px;">
|
||||
<div class="col-12">
|
||||
<div class="card">
|
||||
<div class="card-header">
|
||||
<div class="row">
|
||||
<div class="col-12">
|
||||
<h1 class="text-center font-weight-bolder" style="font-size: 7.3rem; poition:relative;">503</h1>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row my-4">
|
||||
<div class="col-12 text-center">
|
||||
<h6 class="text-center text-uppercase" style="font-size: 1.3rem;">This site is under construction. Please visit us soon.</h6>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
54
resources/views/frontend/home.blade.php
Normal file
54
resources/views/frontend/home.blade.php
Normal file
@ -0,0 +1,54 @@
|
||||
@extends('frontend.layouts.app')
|
||||
|
||||
@section('content')
|
||||
|
||||
<!-- START SECTION PROJECT -->
|
||||
@if ($blogs->isNotEmpty())
|
||||
<section class="small_pt">
|
||||
<div class="container">
|
||||
<div class="row justify-content-center">
|
||||
<div class="col-xl-6 col-lg-8">
|
||||
<div class="text-center animation" data-animation="fadeInUp" data-animation-delay="0.01s">
|
||||
<div class="heading_s1 text-center">
|
||||
<h2>Blogs</h2>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="container">
|
||||
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
<ul class="grid_container gutter_medium grid_col3">
|
||||
<li class="grid-sizer"></li>
|
||||
<!-- START PORTFOLIO ITEM -->
|
||||
@foreach ($blogs as $blogsData)
|
||||
<li class="grid_item">
|
||||
<div class="gallery_item">
|
||||
<div class="content_box event_box radius_all_10 box_shadow1 animation" data-animation="fadeInUp" data-animation-delay="0.01s">
|
||||
|
||||
<div class="content_desc">
|
||||
<h4 class="content_title"><a href="#"><span> {{ $blogsData->title }}</span></a></h4>
|
||||
|
||||
<span>{!! Str::limit($blogsData->content, 200) !!}</span>
|
||||
</h4>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</li>
|
||||
@endforeach
|
||||
<!-- END PORTFOLIO ITEM -->
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
@endif
|
||||
<!-- START SECTION PROJECT -->
|
||||
|
||||
|
||||
@stop
|
33
resources/views/frontend/layout1/footer.blade.php
Normal file
33
resources/views/frontend/layout1/footer.blade.php
Normal file
@ -0,0 +1,33 @@
|
||||
<!-- END SECTION CALL TO ACTION -->
|
||||
{{-- <section class="bg_default small_pt small_pb">
|
||||
<div class="container">
|
||||
<div class="row align-items-center">
|
||||
<div class="col-md-8">
|
||||
<div class="text_white cta_section">
|
||||
<div class="medium_divider d-block d-md-none"></div>
|
||||
<div class="heading_s1 heading_light">
|
||||
<h2>project!</h2>
|
||||
</div>
|
||||
<p>If you are going to use a passage of embarrassing hidden in the middle of text</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-4">
|
||||
<div class="text-md-right">
|
||||
<a href="#" class="btn btn-outline-white rounded-0">Get Started</a>
|
||||
</div>
|
||||
<div class="medium_divider d-block d-md-none"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section> --}}
|
||||
<!-- END SECTION CALL TO ACTION -->
|
||||
<!-- START FOOTER -->
|
||||
{{-- <footer class="bg_blue_dark footer_dark">
|
||||
<div class="top_footer">
|
||||
<div class="container">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</footer> --}}
|
||||
<!-- END FOOTER -->
|
171
resources/views/frontend/layout1/form.blade.php
Normal file
171
resources/views/frontend/layout1/form.blade.php
Normal file
@ -0,0 +1,171 @@
|
||||
@extends('frontend.layout1.template')
|
||||
|
||||
@section('title', 'Enquiry Form')
|
||||
|
||||
@section('content')
|
||||
<div class="container login-section py-5">
|
||||
<div class="row">
|
||||
<div class="col-md-3">
|
||||
<img src="{{ asset('images/access.png') }}" alt="" class="img-fluid">
|
||||
</div>
|
||||
<div class="col-md-9">
|
||||
<!--h2 class="login-right-title pt-5">
|
||||
@if(isset($campaign))
|
||||
{{$campaign->name}}
|
||||
@endif
|
||||
</h2-->
|
||||
</div>
|
||||
</div>
|
||||
<div class="row gx-5">
|
||||
<div class="col-lg-7 col-md-8">
|
||||
<div class="login-form bg-light mt-4 pb-4">
|
||||
@if(isset($campaign) && $campaign->banner)
|
||||
<img class="img-fluid" src="{{ asset($campaign->banner_path)}}"/>
|
||||
@endif
|
||||
@if(Illuminate\Support\Facades\Session::has('success'))
|
||||
<div class="alert alert-success mt-3 mb-3" id="alert_message">
|
||||
{{Illuminate\Support\Facades\Session::get('success')}}
|
||||
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
|
||||
<span aria-hidden="true">×</span>
|
||||
</button>
|
||||
</div>
|
||||
@endif
|
||||
<h5 class="login_welcome text-center pt-4 pb-1">{{$campaign->name}}</h5>
|
||||
<form method="GET" id="enquiry_form" name="enq" action="{{ route('customerform.store',['headers'=> $campaign->name, 'user_agent'=> $campaign->id]) }}" class="p-3">
|
||||
@csrf
|
||||
@if(isset($campaign))
|
||||
<input type="hidden" name="campaign_id" id="" value="{{$campaign->id}}">
|
||||
@endif
|
||||
<input type="hidden" name="source" id="" value="registration">
|
||||
<div class="row">
|
||||
<div class="form-group col-12">
|
||||
<input required="required" placeholder="Enter Name" id="first-name" class="form-control"
|
||||
name="name" type="text">
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="form-group col-8">
|
||||
<input required="required" placeholder="Enter Email" id="email" class="form-control"
|
||||
name="email" type="email">
|
||||
</div>
|
||||
|
||||
<div class="form-group col-4">
|
||||
<input required="required" placeholder="Enter Phone" id="phone" class="form-control"
|
||||
name="phone" type="number">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="row">
|
||||
|
||||
<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 placeholder="Grade" class="form-control"
|
||||
name="highest_grade" type="text">
|
||||
|
||||
</div>
|
||||
|
||||
<div class="form-group col-4">
|
||||
<input placeholder="Stream" class="form-control"
|
||||
name="highest_stream" type="text">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="row">
|
||||
<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">
|
||||
<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">
|
||||
<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="row">
|
||||
<div class="col-lg-12 justify-content-center align-center">
|
||||
<button type="submit" title="Submit Your Message!" class="btn btn-submit" name="submit"
|
||||
value="Submit">Submit</button>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-5 col-md-4 d-flex align-items-center pl-5">
|
||||
<div class="login-right">
|
||||
|
||||
|
||||
<div class="login-right-list pt-4 ">
|
||||
@if(isset($campaign))
|
||||
|
||||
{!! $campaign->description !!}
|
||||
@endif
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@endsection
|
||||
|
||||
@section('page-specific-scripts')
|
||||
<script>
|
||||
$('.offerd_course').select2({
|
||||
});
|
||||
|
||||
setTimeout(() => {
|
||||
$('#alert_message').hide();
|
||||
}, 6000);
|
||||
|
||||
$('#enquiry_form').submit(function(){
|
||||
$(this).find(':input[type=submit]').prop('disabled', true);
|
||||
});
|
||||
</script>
|
||||
@endsection
|
17
resources/views/frontend/layout1/header.blade.php
Normal file
17
resources/views/frontend/layout1/header.blade.php
Normal file
@ -0,0 +1,17 @@
|
||||
<!-- START HEADER -->
|
||||
{{-- <header class="header_wrap dark_skin">
|
||||
<div class="top-header light_skin bg-dark">
|
||||
<div class="container">
|
||||
<div class="row align-items-center">
|
||||
<div class="col-md-12">
|
||||
<h2 class="text-center p-3">Welcome</h2>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="container">
|
||||
|
||||
</div>
|
||||
</header> --}}
|
||||
<!-- END HEADER -->
|
147
resources/views/frontend/layout1/template.blade.php
Normal file
147
resources/views/frontend/layout1/template.blade.php
Normal file
@ -0,0 +1,147 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<title>@yield('title')</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta content="Premium Multipurpose Admin & Dashboard Template" name="description" />
|
||||
<meta content="Themesbrand" name="author" />
|
||||
|
||||
<!-- CSRF Token -->
|
||||
<meta name="csrf-token" content="{{ csrf_token() }}">
|
||||
|
||||
<!-- App favicon -->
|
||||
<link rel="shortcut icon" href="assets/images/favicon.ico">
|
||||
|
||||
{{-- <link href="assets/libs/metrojs/release/MetroJs.Full/MetroJs.min.css" rel="stylesheet" type="text/css" /> --}}
|
||||
<link href="{{asset('css/MetroJs.min.css')}}" id="app-style" rel="stylesheet" type="text/css" />
|
||||
|
||||
<!-- Bootstrap Css -->
|
||||
{{-- <link href="assets/css/bootstrap.min.css" id="bootstrap-style" rel="stylesheet" type="text/css" /> --}}
|
||||
<link href="{{asset('css/bootstrap.min.css')}}" id="app-style" rel="stylesheet" type="text/css" />
|
||||
|
||||
<!-- Icons Css -->
|
||||
{{-- <link href="assets/css/icons.min.css" rel="stylesheet" type="text/css" /> --}}
|
||||
<link href="{{asset('css/icons.min.css')}}" id="app-style" rel="stylesheet" type="text/css" />
|
||||
|
||||
<!-- App Css-->
|
||||
{{-- <link href="assets/css/app.min.css" id="app-style" rel="stylesheet" type="text/css" /> --}}
|
||||
<link href="{{asset('css/app.min.css')}}" id="app-style" rel="stylesheet" type="text/css" />
|
||||
|
||||
<!-- Sweet Alert-->
|
||||
<link href="{{asset('css/sweetalert2.min.css')}}" rel="stylesheet" type="text/css" />
|
||||
|
||||
<!-- Select2-->
|
||||
<link href="{{asset('css/select2.min.css')}}" rel="stylesheet" />
|
||||
|
||||
<!-- style-->
|
||||
<link href="{{asset('css/style.css')}}" rel="stylesheet" />
|
||||
<link href="{{asset('css/frontend.css')}}" rel="stylesheet" />
|
||||
|
||||
<link href="{{ asset('css/dropify.min.css') }}" rel="styleshet">
|
||||
|
||||
<!-- Toastr-->
|
||||
<link rel="stylesheet" href="{{ asset('css/toastr.min.css') }}">
|
||||
|
||||
@yield('page-specific-styles')
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
|
||||
@include('frontend.layout1.header')
|
||||
|
||||
@yield('content')
|
||||
|
||||
@include('frontend.layout1.footer')
|
||||
|
||||
<a href="#" class="scrollup" style="display: none;"><i class="ion-ios-arrow-up"></i></a>
|
||||
|
||||
<!-- JAVASCRIPT -->
|
||||
{{-- <script src="assets/libs/jquery/jquery.min.js"></script> --}}
|
||||
<script src="{{ asset('js/jquery.min.js') }} "></script>
|
||||
|
||||
|
||||
{{-- <script src="assets/libs/bootstrap/js/bootstrap.bundle.min.js"></script> --}}
|
||||
<script src="{{ asset('js/bootstrap.bundle.min.js') }} "></script>
|
||||
|
||||
{{-- <script src="assets/libs/metismenu/metisMenu.min.js"></script> --}}
|
||||
<script src="{{ asset('js/metisMenu.min.js') }} "></script>
|
||||
|
||||
{{-- <script src="assets/libs/simplebar/simplebar.min.js"></script> --}}
|
||||
<script src="{{ asset('js/simplebar.min.js') }} "></script>
|
||||
|
||||
|
||||
{{-- <script src="assets/libs/node-waves/waves.min.js"></script> --}}
|
||||
{{-- <script src="{{asset('js/waves.min.js')}} "></script> --}}
|
||||
|
||||
{{-- <script src="assets/js/pages/dashboard.init.js"></script> --}}
|
||||
{{-- <script src="{{asset('js/dashboard.init.js')}}"></script> --}}
|
||||
|
||||
<!-- Sweet alert init js-->
|
||||
<script src="{{ asset('js/sweetalert2.min.js') }}"></script>
|
||||
|
||||
{{-- <script src="assets/js/app.js"></script> --}}
|
||||
<script src="{{ asset('js/app.js') }}"></script>
|
||||
|
||||
{{-- Select2 --}}
|
||||
<script src="{{ asset('js/select2.min.js') }}"></script>
|
||||
|
||||
<script src="{{ asset('js/scripts.js') }}"></script>
|
||||
|
||||
<script src="{{ asset('js/toastr/toastr.js') }}"></script>
|
||||
|
||||
<script src="{{ asset('js/jquery.repeater.min.js') }}"></script>
|
||||
|
||||
<script src="{{ asset('js/form-repeater.init.js') }}"></script>
|
||||
|
||||
{{-- <script>
|
||||
$(function () {
|
||||
$('.my-ckeditor').each(function (e) {
|
||||
CKEDITOR.replace(this.id, {
|
||||
filebrowserUploadUrl: "{{route('ckeditor.upload', ['_token' => csrf_token() ])}}",
|
||||
filebrowserUploadMethod: 'form'
|
||||
});
|
||||
});
|
||||
});
|
||||
</script> --}}
|
||||
|
||||
<script>
|
||||
function deleteThis(obj) {
|
||||
let data = obj.getAttribute("link");
|
||||
Swal.fire({
|
||||
title: 'Are you sure?',
|
||||
text: "You won't be able to revert this!",
|
||||
icon: 'warning',
|
||||
showCancelButton: true,
|
||||
confirmButtonColor: '#3085d6',
|
||||
cancelButtonColor: '#d33',
|
||||
confirmButtonText: 'Yes, delete it!'
|
||||
}).then((result) => {
|
||||
if (result.isConfirmed) {
|
||||
window.location = data;
|
||||
Swal.fire(
|
||||
'Deleted!',
|
||||
'Your file has been deleted.',
|
||||
'success'
|
||||
)
|
||||
} else {
|
||||
Swal.fire(
|
||||
'Cancelled!',
|
||||
'Your file has been Cancelled.',
|
||||
'error'
|
||||
)
|
||||
}
|
||||
})
|
||||
}
|
||||
</script>
|
||||
|
||||
@yield('page-specific-scripts')
|
||||
{!! Toastr::message() !!}
|
||||
|
||||
</body>
|
||||
|
||||
|
||||
</html>
|
147
resources/views/frontend/layouts/app.blade.php
Normal file
147
resources/views/frontend/layouts/app.blade.php
Normal file
@ -0,0 +1,147 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<title>@yield('title')</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta content="Premium Multipurpose Admin & Dashboard Template" name="description" />
|
||||
<meta content="Themesbrand" name="author" />
|
||||
|
||||
<!-- CSRF Token -->
|
||||
<meta name="csrf-token" content="{{ csrf_token() }}">
|
||||
|
||||
<!-- App favicon -->
|
||||
<link rel="shortcut icon" href="assets/images/favicon.ico">
|
||||
|
||||
{{-- <link href="assets/libs/metrojs/release/MetroJs.Full/MetroJs.min.css" rel="stylesheet" type="text/css" /> --}}
|
||||
<link href="{{asset('css/MetroJs.min.css')}}" id="app-style" rel="stylesheet" type="text/css" />
|
||||
|
||||
<!-- Bootstrap Css -->
|
||||
{{-- <link href="assets/css/bootstrap.min.css" id="bootstrap-style" rel="stylesheet" type="text/css" /> --}}
|
||||
<link href="{{asset('css/bootstrap.min.css')}}" id="app-style" rel="stylesheet" type="text/css" />
|
||||
|
||||
<!-- Icons Css -->
|
||||
{{-- <link href="assets/css/icons.min.css" rel="stylesheet" type="text/css" /> --}}
|
||||
<link href="{{asset('css/icons.min.css')}}" id="app-style" rel="stylesheet" type="text/css" />
|
||||
|
||||
<!-- App Css-->
|
||||
{{-- <link href="assets/css/app.min.css" id="app-style" rel="stylesheet" type="text/css" /> --}}
|
||||
<link href="{{asset('css/app.min.css')}}" id="app-style" rel="stylesheet" type="text/css" />
|
||||
|
||||
<!-- Sweet Alert-->
|
||||
<link href="{{asset('css/sweetalert2.min.css')}}" rel="stylesheet" type="text/css" />
|
||||
|
||||
<!-- Select2-->
|
||||
<link href="{{asset('css/select2.min.css')}}" rel="stylesheet" />
|
||||
|
||||
<!-- style-->
|
||||
<link href="{{asset('css/style.css')}}" rel="stylesheet" />
|
||||
<link href="{{asset('css/frontend.css')}}" rel="stylesheet" />
|
||||
|
||||
<link href="{{ asset('css/dropify.min.css') }}" rel="styleshet">
|
||||
|
||||
<!-- Toastr-->
|
||||
<link rel="stylesheet" href="{{ asset('css/toastr.min.css') }}">
|
||||
|
||||
@yield('page-specific-styles')
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
|
||||
@include('frontend.layouts.partials.header')
|
||||
|
||||
@yield('content')
|
||||
|
||||
@include('frontend.layouts.partials.footer')
|
||||
|
||||
<a href="#" class="scrollup" style="display: none;"><i class="ion-ios-arrow-up"></i></a>
|
||||
|
||||
<!-- JAVASCRIPT -->
|
||||
{{-- <script src="assets/libs/jquery/jquery.min.js"></script> --}}
|
||||
<script src="{{ asset('js/jquery.min.js') }} "></script>
|
||||
|
||||
|
||||
{{-- <script src="assets/libs/bootstrap/js/bootstrap.bundle.min.js"></script> --}}
|
||||
<script src="{{ asset('js/bootstrap.bundle.min.js') }} "></script>
|
||||
|
||||
{{-- <script src="assets/libs/metismenu/metisMenu.min.js"></script> --}}
|
||||
<script src="{{ asset('js/metisMenu.min.js') }} "></script>
|
||||
|
||||
{{-- <script src="assets/libs/simplebar/simplebar.min.js"></script> --}}
|
||||
<script src="{{ asset('js/simplebar.min.js') }} "></script>
|
||||
|
||||
|
||||
{{-- <script src="assets/libs/node-waves/waves.min.js"></script> --}}
|
||||
{{-- <script src="{{asset('js/waves.min.js')}} "></script> --}}
|
||||
|
||||
{{-- <script src="assets/js/pages/dashboard.init.js"></script> --}}
|
||||
{{-- <script src="{{asset('js/dashboard.init.js')}}"></script> --}}
|
||||
|
||||
<!-- Sweet alert init js-->
|
||||
<script src="{{ asset('js/sweetalert2.min.js') }}"></script>
|
||||
|
||||
{{-- <script src="assets/js/app.js"></script> --}}
|
||||
<script src="{{ asset('js/app.js') }}"></script>
|
||||
|
||||
{{-- Select2 --}}
|
||||
<script src="{{ asset('js/select2.min.js') }}"></script>
|
||||
|
||||
<script src="{{ asset('js/scripts.js') }}"></script>
|
||||
|
||||
<script src="{{ asset('js/toastr/toastr.js') }}"></script>
|
||||
|
||||
<script src="{{ asset('js/jquery.repeater.min.js') }}"></script>
|
||||
|
||||
<script src="{{ asset('js/form-repeater.init.js') }}"></script>
|
||||
|
||||
{{-- <script>
|
||||
$(function () {
|
||||
$('.my-ckeditor').each(function (e) {
|
||||
CKEDITOR.replace(this.id, {
|
||||
filebrowserUploadUrl: "{{route('ckeditor.upload', ['_token' => csrf_token() ])}}",
|
||||
filebrowserUploadMethod: 'form'
|
||||
});
|
||||
});
|
||||
});
|
||||
</script> --}}
|
||||
|
||||
<script>
|
||||
function deleteThis(obj) {
|
||||
let data = obj.getAttribute("link");
|
||||
Swal.fire({
|
||||
title: 'Are you sure?',
|
||||
text: "You won't be able to revert this!",
|
||||
icon: 'warning',
|
||||
showCancelButton: true,
|
||||
confirmButtonColor: '#3085d6',
|
||||
cancelButtonColor: '#d33',
|
||||
confirmButtonText: 'Yes, delete it!'
|
||||
}).then((result) => {
|
||||
if (result.isConfirmed) {
|
||||
window.location = data;
|
||||
Swal.fire(
|
||||
'Deleted!',
|
||||
'Your file has been deleted.',
|
||||
'success'
|
||||
)
|
||||
} else {
|
||||
Swal.fire(
|
||||
'Cancelled!',
|
||||
'Your file has been Cancelled.',
|
||||
'error'
|
||||
)
|
||||
}
|
||||
})
|
||||
}
|
||||
</script>
|
||||
|
||||
@yield('page-specific-scripts')
|
||||
{!! Toastr::message() !!}
|
||||
|
||||
</body>
|
||||
|
||||
|
||||
</html>
|
33
resources/views/frontend/layouts/partials/footer.blade.php
Normal file
33
resources/views/frontend/layouts/partials/footer.blade.php
Normal file
@ -0,0 +1,33 @@
|
||||
<!-- END SECTION CALL TO ACTION -->
|
||||
{{-- <section class="bg_default small_pt small_pb">
|
||||
<div class="container">
|
||||
<div class="row align-items-center">
|
||||
<div class="col-md-8">
|
||||
<div class="text_white cta_section">
|
||||
<div class="medium_divider d-block d-md-none"></div>
|
||||
<div class="heading_s1 heading_light">
|
||||
<h2>project!</h2>
|
||||
</div>
|
||||
<p>If you are going to use a passage of embarrassing hidden in the middle of text</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-4">
|
||||
<div class="text-md-right">
|
||||
<a href="#" class="btn btn-outline-white rounded-0">Get Started</a>
|
||||
</div>
|
||||
<div class="medium_divider d-block d-md-none"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section> --}}
|
||||
<!-- END SECTION CALL TO ACTION -->
|
||||
<!-- START FOOTER -->
|
||||
{{-- <footer class="bg_blue_dark footer_dark">
|
||||
<div class="top_footer">
|
||||
<div class="container">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</footer> --}}
|
||||
<!-- END FOOTER -->
|
17
resources/views/frontend/layouts/partials/header.blade.php
Normal file
17
resources/views/frontend/layouts/partials/header.blade.php
Normal file
@ -0,0 +1,17 @@
|
||||
<!-- START HEADER -->
|
||||
{{-- <header class="header_wrap dark_skin">
|
||||
<div class="top-header light_skin bg-dark">
|
||||
<div class="container">
|
||||
<div class="row align-items-center">
|
||||
<div class="col-md-12">
|
||||
<h2 class="text-center p-3">Welcome</h2>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="container">
|
||||
|
||||
</div>
|
||||
</header> --}}
|
||||
<!-- END HEADER -->
|
484
resources/views/frontend/nz/index.blade.php
Normal file
484
resources/views/frontend/nz/index.blade.php
Normal file
@ -0,0 +1,484 @@
|
||||
<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>
|
91
resources/views/frontend/rosetta_canada/index.blade.php
Normal file
91
resources/views/frontend/rosetta_canada/index.blade.php
Normal file
@ -0,0 +1,91 @@
|
||||
<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>Aspire Canada</title>
|
||||
<link rel="stylesheet" href="{{ asset('assets/rosetta_canada/css/style.css') }}">
|
||||
<link rel="stylesheet" href="{{ asset('assets/rosetta_canada/css/bootstrap.min.css') }}">
|
||||
<link href="{{ asset('assets/rosetta_canada/css/select2.min.css') }}" rel="stylesheet" />
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div class="container p-2">
|
||||
<div class="row d-flex align-items-center justify-content-start">
|
||||
<div class="col-md-5 pt-5 ">
|
||||
<div class="row">
|
||||
<div class="col-lg-12">
|
||||
<img src="{{ asset('assets/rosetta_canada/img/1.png') }}" class="img-fluid">
|
||||
</div>
|
||||
<div class="col-lg-12 mt-4">
|
||||
<!-- Form Section -->
|
||||
<div class="mt-10 p-2">
|
||||
<form class="form row g-3 form-group p-3 border border-2 rounded" action="#">
|
||||
<div class="text-center form3-head d-flex justify-content-center align-content-center">
|
||||
|
||||
<label for="">
|
||||
<h3 class="text-uppercase">Register now</h3>
|
||||
</label>
|
||||
</div>
|
||||
<div class="col-md-12">
|
||||
<input required="required" type="text" class="form-control" id="full-name" placeholder="Enter Your Full Name" name="name">
|
||||
</div>
|
||||
<div class="col-md-6">
|
||||
<input required="required" placeholder="Enter Email Address" id="email" class="form-control" name="email" type="email">
|
||||
</div>
|
||||
<div class="col-md-6">
|
||||
<input required="required" placeholder="Enter Phone" id="phone" class="form-control" name="phone" type="number">
|
||||
</div>
|
||||
<div class="col-md-6">
|
||||
<select name="highest_qualification" class="form-select">
|
||||
<option value="" disabled="" selected="">Select Qualification</option>
|
||||
<option value="NEB +2 / A - Levels">NEB +2 / A - Levels</option>
|
||||
<option value="Bachelors">Bachelors</option>
|
||||
<option value="Master">Master</option>
|
||||
</select>
|
||||
</div>
|
||||
<div class="col-md-6">
|
||||
<input placeholder="Grade" class="form-control" name="highest_grade" type="text">
|
||||
</div>
|
||||
<div class="col-md-4">
|
||||
<input placeholder="University/Board" class="form-control" name="highest_stream" type="text">
|
||||
</div>
|
||||
<div class="col-md-4">
|
||||
<select name="test_name" class="form-select">
|
||||
<option value="" disabled="" selected="">Select Test Preparation</option>
|
||||
<option value="TOEFL">TOEFL</option>
|
||||
<option value="IELTS">IELTS</option>
|
||||
<option value="PTE">PTE</option>
|
||||
</select>
|
||||
</div>
|
||||
<div class="col-md-4">
|
||||
<input placeholder="Test Score " class="form-control" name="test_score" type="text">
|
||||
</div>
|
||||
<div class="col-md-12">
|
||||
<select class="js-select2 form-control" name="interested_course[]" multiple="multiple" aria-placeholder="Enter Your Desired Field of Study" style="width: 100%">
|
||||
<option value="IT">IT</option>
|
||||
<option value="EN">Engineering</option>
|
||||
<option value="IT">IT</option>
|
||||
<option value="EN">Engineering</option>
|
||||
<option value="IT">IT</option>
|
||||
<option value="EN">Engineering</option>
|
||||
</select>
|
||||
</div>
|
||||
<div class="col-md-12 text-center">
|
||||
<input type="submit" class="btn btn-submit" value="Submit">
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script><!-- jQuery base library needed -->
|
||||
<script src="{{ asset('assets/rosetta_canada/js/select2.min.js ') }}"></script>
|
||||
<script src="{{ asset('assets/rosetta_canada/js/custom.js ') }}"></script>
|
||||
<script src="{{ asset('assets/rosetta_canada/js/bootstrap.min.js') }}"></script>
|
||||
</body>
|
||||
|
||||
</html>
|
515
resources/views/frontend/uk/index.blade.php
Normal file
515
resources/views/frontend/uk/index.blade.php
Normal file
@ -0,0 +1,515 @@
|
||||
<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/uk/css/style.css') }}">
|
||||
<link rel="stylesheet" href=" {{ asset('assets/uk/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/uk/css/owl.theme.default.min.css') }}">
|
||||
<link rel="stylesheet" href="{{ asset('assets/uk/css/custom.scss') }}">
|
||||
<link rel="stylesheet" href=" {{ asset('assets/uk/css/bootstrap.min.css') }}">
|
||||
<link href=" {{ asset('assets/uk/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/uk/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/uk/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/uk/img/uk_banner.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/uk/img/uk1.png') }}" alt="" class="img-fluid">
|
||||
</div>
|
||||
<div class="col-md-6" uk-scrollspy="cls: uk-animation-slide-right-medium; repeat: true" tabindex="0">
|
||||
<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">
|
||||
<p class="text-center fw-bold fs-4 text-secondary text-uppercase ">Register Right Away !!</p>
|
||||
@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">uk Admission Day New Baneshor (24 August)</option>
|
||||
<option value="biratnagar">uk Admission Day Biratnagar (25 August)</option>
|
||||
<option value="pokhara">uk Admission Day Pokhara (26 August)</option>
|
||||
<option value="chitwan">uk Admission Day Chitwan (28 August)</option>
|
||||
<option value="butwal">uk Admission Day Butwal (29 August)</option>
|
||||
<option value="putalisadak">uk 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!" 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/uk/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">The UK is home to some of the world's top universities, renowned for their academic excellence and research facilities. The education system in the UK is highly respected worldwide, and degrees from UK universities are recognized internationally.
|
||||
</p>
|
||||
<!-- <a type="button" 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/uk/img/career.jpg ') }}" alt="">
|
||||
<p class="m-0 mt-3 mb-3 fw-bold text-primary text-uppercase ">Career Prospects</p>
|
||||
<p class="m-0 mb-3">UK degrees are highly valued by employers globally, providing students with a competitive edge in the job market. Studying in the UK can also offer opportunities for internships, work experience, and networking with industry professionals.
|
||||
</p>
|
||||
<!-- <a type="button" 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/uk/img/scholarship.jpg ') }}" alt="">
|
||||
<p class="m-0 mt-3 mb-3 fw-bold text-primary text-uppercase ">Scholarships and Financial Aid</p>
|
||||
<p class="m-0 mb-3">There are numerous scholarships and financial aid opportunities available to international students in the UK, making it more accessible to students who may otherwise struggle to fund their education.
|
||||
</p>
|
||||
<!-- <a type="button" class="btn btn-success">Read More</a> -->
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- <div class="col-md-4">
|
||||
<img src="{{ asset('assets/uk/img/uk.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="">
|
||||
<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/uk/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">Muskan GC</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/uk/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">Suraj Bista</span>
|
||||
<span>Student</span>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</li>
|
||||
|
||||
<li class="">
|
||||
<div class="card p-3" data-toggle="collapse" data-target="#collapseThree" aria-expanded="false" aria-controls="collapseThree">
|
||||
|
||||
<div class="d-flex flex-row align-items-center">
|
||||
|
||||
<img src="{{ asset('assets/uk/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">Saru Budhathoki</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">Studying in the UK has opened up so many doors for me.</p>
|
||||
<p> I've had the opportunity to work with some of the leading researchers in my field, and I've also had the chance to take part in conferences and events that I never would have had access to otherwise. The experience has been truly life-changing . Thanks to AEN Family.</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/uk/img/high_edu.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">UK academic journey has been an incredible. </p>
|
||||
<p>I've been challenged academically, but I've also had the opportunity to explore new cities, meet new people, and try new things. The experience has broadened my horizons and given me a new perspective on the world.</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/uk/img/scholarship.jpg') }}" alt="">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id="collapseThree" class="collapse" aria-labelledby="headingThree" 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">Living and studying in the UK has been a dream come true.</p>
|
||||
<p> The education system here is challenging but rewarding, and the professors are always available to help you succeed. The UK is also a great place to make new friends, explore new cities, and try new things.</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/uk/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/uk/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/uk/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/uk/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/uk/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/uk/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/uk/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/uk/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/uk/js/select2.min.js ') }}"></script>
|
||||
<script src="{{ asset('assets/uk/js/custom.js ') }}"></script>
|
||||
<script src=" {{ asset('assets/uk/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/uk/js/bootstrap.min.js') }}"></script>
|
||||
<script src=" {{ asset('assets/uk/js/bootstrap.bundle.min.js') }}"></script>
|
||||
<script src="{{ asset('assets/uk/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/uk/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 : +977-1-4233014</p>
|
||||
<p><span><i class="fa-solid fa-envelope me-2"></i></span> Gmail : info@accessedu.net</p>
|
||||
<p><span><i class="fa-solid fa-location-dot me-2"></i></span> Location : Putalisadhak</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>
|
157
resources/views/frontend/visit/form.blade.php
Normal file
157
resources/views/frontend/visit/form.blade.php
Normal file
@ -0,0 +1,157 @@
|
||||
@extends('frontend.layouts.app')
|
||||
|
||||
@section('title', 'Enquiry Form')
|
||||
|
||||
@section('content')
|
||||
<div class="container login-section py-5">
|
||||
<div class="row">
|
||||
<div class="col-md-3">
|
||||
<img src="{{ asset('images/access.png') }}" alt="" class="img-fluid">
|
||||
</div>
|
||||
<div class="col-md-9">
|
||||
<h2 class="login-right-title pt-5">
|
||||
Visit Form
|
||||
</h2>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row gx-5">
|
||||
<div class="col-lg-6 col-md-6">
|
||||
<div class="login-form bg-light mt-4 pb-4">
|
||||
|
||||
@if(Illuminate\Support\Facades\Session::has('success'))
|
||||
<div class="alert alert-success mt-3 mb-3" id="alert_message">
|
||||
{{Illuminate\Support\Facades\Session::get('success')}}
|
||||
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
|
||||
<span aria-hidden="true">×</span>
|
||||
</button>
|
||||
</div>
|
||||
@endif
|
||||
<h5 class="login_welcome text-center pt-4 pb-1">Register now for Appointments</h5>
|
||||
<form method="POST" id="enquiry_form" name="enq" action="{{ route('visitform.store') }}" class="p-3">
|
||||
@csrf
|
||||
|
||||
<input type="hidden" name="source" id="" value="visit">
|
||||
<div class="row">
|
||||
<div class="form-group col-12">
|
||||
<input required="required" placeholder="Enter Name" id="first-name" class="form-control"
|
||||
name="name" type="text">
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="form-group col-8">
|
||||
<input required="required" placeholder="Enter Email" id="email" class="form-control"
|
||||
name="email" type="email">
|
||||
</div>
|
||||
|
||||
<div class="form-group col-4">
|
||||
<input required="required" placeholder="Enter Phone" id="phone" class="form-control"
|
||||
name="phone" type="number">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="row">
|
||||
|
||||
<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 required="required" placeholder="Grade" class="form-control"
|
||||
name="highest_grade" type="text">
|
||||
|
||||
</div>
|
||||
|
||||
<div class="form-group col-4">
|
||||
<input required="required" placeholder="Stream" class="form-control"
|
||||
name="highest_stream" type="text">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="row">
|
||||
<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 required="required" placeholder="Enter Test Score " class="form-control"
|
||||
name="test_score" type="text">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row">
|
||||
<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>
|
||||
|
||||
<div class="row">
|
||||
|
||||
<div class="form-group col-12">
|
||||
<select name="campaign_id" class="form-control">
|
||||
<option value="" disabled selected>Select Campaign</option>
|
||||
@foreach ($campaigns as $campaign)
|
||||
<option value="{{$campaign->id}}">{{$campaign->name}}</option>
|
||||
@endforeach
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="row">
|
||||
<div class="col-lg-12 justify-content-center align-center">
|
||||
<button type="submit" title="Submit Your Message!" class="btn btn-submit" name="submit"
|
||||
value="Submit">Submit</button>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
@endsection
|
||||
|
||||
@section('page-specific-scripts')
|
||||
<script>
|
||||
$('.offerd_course').select2({
|
||||
});
|
||||
|
||||
setTimeout(() => {
|
||||
$('#alert_message').hide();
|
||||
}, 6000);
|
||||
|
||||
$('#enquiry_form').submit(function(){
|
||||
$(this).find(':input[type=submit]').prop('disabled', true);
|
||||
});
|
||||
</script>
|
||||
@endsection
|
Reference in New Issue
Block a user