From cf87761d7649520f4fc38420393f7c31b4888acb Mon Sep 17 00:00:00 2001 From: tribikram Date: Wed, 15 Feb 2023 15:16:49 +0545 Subject: [PATCH] [add] enquiry form --- public/frontend/css/style.css | 59 ++++++- resources/views/blog-detail.blade.php | 24 +-- resources/views/enquiry-form.blade.php | 219 +++++++++++++++++++++++++ resources/views/layout/app.blade.php | 2 +- routes/web.php | 6 +- 5 files changed, 276 insertions(+), 34 deletions(-) create mode 100644 resources/views/enquiry-form.blade.php diff --git a/public/frontend/css/style.css b/public/frontend/css/style.css index a8c812b..6478676 100644 --- a/public/frontend/css/style.css +++ b/public/frontend/css/style.css @@ -261,7 +261,12 @@ Responsive Codes .top-socials a{ font-size: 24px; } -.top-links a, +.top-links a{ + color: #326CBF; + font-weight: 500; + font-size: 16px; + line-height: 24px; +} .top-links h2{ text-decoration: none; font-weight: 500; @@ -451,7 +456,8 @@ Responsive Codes .faq-section, .student-visa-section, .services-page-section, -.appointment-section{ +.appointment-section, +.enquiry-form-section{ padding: 3rem 6rem; } .services-section .row, @@ -1423,9 +1429,6 @@ Responsive Codes flex-direction: column; gap: 20px; } -.recent-card-img{ - width: 300px; -} .recent-card-content{ display: flex; gap: 20px; @@ -1676,6 +1679,43 @@ table.lightgrey-weekends tbody td:nth-child(n+6) { background-color: #27ab00 !important; } /* appointment page css ends */ +/* enquiry page css starts */ +.enquiry-from-btn{ + padding: 15px 60px; + background: #326CBF; + color: #FFFFFF; + box-shadow: 0px 0px 10px rgb(0 0 0 / 15%); + border: none; + font-weight: 500; + font-size: 16px; + line-height: 22px; + border-radius: 6px; + margin-top: 35px; +} +.enquiry-form-row h3{ + font-weight: 600; + color: #E22899; + margin: 20px 0; + text-align: center; + letter-spacing: 0.001em; + display: inline-block ; +} +.enquiry-form-row h3::after{ + content: ''; + border-bottom: 5px solid #E22899; + margin: 1% 40%; + justify-content: center; + display: block; +} +.enquiry-form-section h2{ + font-weight: 700; + text-align: center; + font-size: 36px; + line-height: 48px; + letter-spacing: 0.005em; + color: #326CBF; +} +/* enquiry page css ends */ /* Footer Css */ .footer{ @@ -2015,7 +2055,8 @@ table.lightgrey-weekends tbody td:nth-child(n+6) { .lets-chat-section, .blog-banner, .overseas-section, - .services-page-section{ + .services-page-section, + .enquiry-form-section{ padding: 2rem; } .contact-form-section, @@ -2206,7 +2247,8 @@ table.lightgrey-weekends tbody td:nth-child(n+6) { .our-values-section, .blog-banner, .overseas-section, - .services-page-section{ + .services-page-section, + .enquiry-form-section{ padding: 3rem; } .services-content h1, @@ -2298,7 +2340,8 @@ table.lightgrey-weekends tbody td:nth-child(n+6) { .lets-chat-section, .our-values-section, .overseas-section, - .services-page-section{ + .services-page-section, + .enquiry-form-section{ padding: 3rem; } .why-us-section::before, diff --git a/resources/views/blog-detail.blade.php b/resources/views/blog-detail.blade.php index cebe9a3..d175ffd 100644 --- a/resources/views/blog-detail.blade.php +++ b/resources/views/blog-detail.blade.php @@ -55,10 +55,10 @@

Most Popular Blogs

@foreach(App\Models\NewsAndUpdate::where('id','!=',$blog->first()->id)->where('status','1')->get() as $recent) -
+
-
+
@php $date = Carbon\Carbon::createFromFormat('Y-m-d', $recent->publish_date);@endphp
{{$date->format('j M, Y')}}
2 min read
@@ -66,26 +66,6 @@
@endforeach -
diff --git a/resources/views/enquiry-form.blade.php b/resources/views/enquiry-form.blade.php new file mode 100644 index 0000000..7f07810 --- /dev/null +++ b/resources/views/enquiry-form.blade.php @@ -0,0 +1,219 @@ +@extends('layout.app') +@section('title') +Enquiry Form + + + + + + +@endsection +@section('content') +
+

Can you please send me fill up this information sheet and we will get back to you soon, Thanks !

+
+
+

Personal Details

+
+
+ + +
+
+
+
+ + +
+
+
+
+ + +
+
+
+
+ + +
+
+
+
+ + +
+
+
+
+ +
+
+ + +
+
+ + +
+
+ + +
+
+
+
+
+
+ + +
+
+
+
+ + +
+
+
+
+ + +
+
+ +

Addidional Information

+
+
+ + +
+
+
+
+ + +
+
+
+
+ + +
+
+
+
+ + +
+
+
+
+ + +
+
+
+
+ + +
+
+
+
+ + +
+
+
+
+ + +
+
+
+
+ + +
+
+
+
+ +
+
+ + +
+
+ + +
+
+ + +
+
+
+
+
+
+ + +
+
+
+
+ + +
+
+
+
+ + +
+
+
+
+ + +
+
+
+
+ + +
+
+
+
+ + +
+
+
+
+ + +
+
+
+ +
+
+
+
+@endsection \ No newline at end of file diff --git a/resources/views/layout/app.blade.php b/resources/views/layout/app.blade.php index 1643068..09f7e74 100644 --- a/resources/views/layout/app.blade.php +++ b/resources/views/layout/app.blade.php @@ -62,7 +62,7 @@