diff --git a/app/Models/Country.php b/app/Models/Country.php new file mode 100644 index 0000000..fc698f5 --- /dev/null +++ b/app/Models/Country.php @@ -0,0 +1,11 @@ +id(); + $table->timestamps(); + }); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + Schema::dropIfExists('countries'); + } +}; diff --git a/public/frontend/css/style.css b/public/frontend/css/style.css index 71a1486..4f25b76 100644 --- a/public/frontend/css/style.css +++ b/public/frontend/css/style.css @@ -1692,18 +1692,26 @@ table.lightgrey-weekends tbody td:nth-child(n+6) { border-radius: 6px; margin-top: 35px; } +.enquiry-from-btn:hover{ + background-color: #E32394; + transition: background-color 1s ease-out 100ms; +} +.form-select .select-placeholder{ + color: #7B8792; +} .enquiry-form-row h3{ font-weight: 600; - color: #E22899; - margin: 20px 0; + color: #212529; + margin: 10px 0; text-align: center; + font-size: 24px; letter-spacing: 0.001em; display: inline-block ; } .enquiry-form-row h3::after{ content: ''; - border-bottom: 5px solid #E22899; - margin: 1% 40%; + border-bottom: 2px solid #212529; + margin: 0.5% 45%; justify-content: center; display: block; } @@ -1714,13 +1722,26 @@ table.lightgrey-weekends tbody td:nth-child(n+6) { line-height: 48px; letter-spacing: 0.005em; color: #326CBF; +} +.enquiry-form-section p{ + text-align: center; } -#married{ +#spouse-married-date, +#spouse-academic, +#spouse-experience, +#spouse-salary, +#work-exp-detail, +#work-salary-mode{ display: none; } .married{ display: block !important; } +.enquiry-form-section .form-control:focus, +.enquiry-form-section .form-select:focus{ + box-shadow: none; + border-color: none; +} /* enquiry page css ends */ /* Footer Css */ diff --git a/resources/views/enquiry-form.blade.php b/resources/views/enquiry-form.blade.php index fe0a4ee..b27e3d7 100644 --- a/resources/views/enquiry-form.blade.php +++ b/resources/views/enquiry-form.blade.php @@ -10,7 +10,8 @@ @endsection @section('content')
-

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

+

Enquiry Form

+

Please fill up the form and we will get back to you soon, Thanks !

Personal Details

@@ -23,7 +24,7 @@
- +
@@ -41,7 +42,12 @@
- +
@@ -78,7 +84,7 @@
- +
@@ -88,7 +94,7 @@
-

Additional Information

+

Additional Information

@@ -127,11 +133,21 @@
- + + +
+
+
+
+
-
+
@@ -166,27 +182,28 @@
+
-
+
- +
-
+
-
+
-
+
@@ -207,7 +224,13 @@
- +
@@ -220,14 +243,44 @@ @section('script') diff --git a/routes/web.php b/routes/web.php index 7c39686..3ca0dd0 100644 --- a/routes/web.php +++ b/routes/web.php @@ -39,6 +39,7 @@ use App\Http\Controllers\Admin\SeoTitleController; use App\Http\Controllers\Admin\VisaServiceController; use App\Http\Controllers\Admin\FaqController; use App\Http\Controllers\Admin\VisaServiceSectionController; +use App\Models\Country; use App\Http\Controllers\Admin\TeamController; use App\Http\Controllers\Admin\AppointmentController; @@ -302,7 +303,8 @@ Route::get('/insurance', function () { return view('insurance'); }); Route::get('/enquiry', function () { - return view('enquiry-form'); + $countries = Country::all(); + return view('enquiry-form', compact('countries')); }); // Route::get('/visa', function () { // return view('visa');