From a09e98af9bbbdf64932dd5adbd73243a71b6b041 Mon Sep 17 00:00:00 2001 From: tribikram Date: Tue, 13 Dec 2022 11:19:27 +0545 Subject: [PATCH] [add] i am chef page --- public/frontend/css/style.css | 5 +- resources/views/am_chef.blade.php | 377 ++++++++++++++++++++++++++ resources/views/recruitment.blade.php | 2 +- routes/web.php | 3 + 4 files changed, 385 insertions(+), 2 deletions(-) create mode 100644 resources/views/am_chef.blade.php diff --git a/public/frontend/css/style.css b/public/frontend/css/style.css index 4523e62..1f7aa8d 100644 --- a/public/frontend/css/style.css +++ b/public/frontend/css/style.css @@ -933,7 +933,8 @@ Responsive Codes z-index: 2; margin: 0 10px; } -.contact-form h2, .chef-hire-form h2{ +.contact-form h2, +.chef-hire-form h2{ font-weight: 500; font-size: 22px; line-height: 178%; @@ -973,6 +974,7 @@ Responsive Codes color: #0A2849; } .chef-hire-form .form-control, +.chef-hire-form .form-select, .contact-form .form-control, .contact-form select{ border: none; @@ -980,6 +982,7 @@ Responsive Codes } .chef-hire-form input::-webkit-input-placeholder, .chef-hire-form textarea::-webkit-input-placeholder, +.chef-hire-form select, .contact-form textarea::-webkit-input-placeholder, .contact-form select, .contact-form input::-webkit-input-placeholder{ diff --git a/resources/views/am_chef.blade.php b/resources/views/am_chef.blade.php new file mode 100644 index 0000000..2dcd075 --- /dev/null +++ b/resources/views/am_chef.blade.php @@ -0,0 +1,377 @@ +@extends('layout.app') +@section('title') + I am Chef +@endsection +@section('content') +
+ +
+

I am Chef

+
+
+
+
+
+
+
Hiring
+

Need a Chef or Cook?

+

Let us know via our enquiry form.

+
What are the next steps?
+
    +
  • Initial consultation to assess your needs, timelines and eligibility.
  • +
  • If required, we will set you up as a Standard Business Sponsor.
  • +
  • Candidate profiles are sent to you and you make your selections for the Skype/Zoom interviews.
  • +
  • Candidates are selected and the Contract of Employment is drafted.
  • +
  • We apply for the candidate’s visa which takes normally 3-4 months to come through.
  • +
  • The candidate resigns from their current post and makes plans to arrive in Australia.
  • +
  • Follow-ups with both the candidate and yourself to ensure everything is running smoothly.
  • +
  • Payment of recruitment fee after 14 days.
  • +
+
+
+
+
+
+ @csrf + @include('errors.error') + @include('success.success') +

Please fill-up the form

+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+ @php + $code = Str::random(5); + @endphp +
+ +
+
+ + +
+
+ + + +
+
+
+ +
+
+
+
+
+ + @section('script') + + @endsection +@endsection \ No newline at end of file diff --git a/resources/views/recruitment.blade.php b/resources/views/recruitment.blade.php index ed6d3df..7b9f28f 100644 --- a/resources/views/recruitment.blade.php +++ b/resources/views/recruitment.blade.php @@ -34,7 +34,7 @@
- +

I am Chef

diff --git a/routes/web.php b/routes/web.php index deee68a..db5e42f 100644 --- a/routes/web.php +++ b/routes/web.php @@ -51,6 +51,9 @@ Route::get('/refreshcaptcha', [HomeController::class,'refreshCaptcha']); Route::get('/need_chef', function(){ return view('need_chef'); }); +Route::get('/am_chef', function(){ + return view('am_chef'); +}); Route::get('/services', function(){ return view('services');