From 01debbfca11d53298af689af56ad91c7b4412aff Mon Sep 17 00:00:00 2001 From: xander Date: Tue, 18 Mar 2025 12:19:20 +0000 Subject: [PATCH] Added Create Jobs --- resources/views/jobs/create.blade.php | 218 ++++++++++++++++++++++++++ routes/web.php | 4 +- 2 files changed, 221 insertions(+), 1 deletion(-) create mode 100644 resources/views/jobs/create.blade.php diff --git a/resources/views/jobs/create.blade.php b/resources/views/jobs/create.blade.php new file mode 100644 index 0000000..509a207 --- /dev/null +++ b/resources/views/jobs/create.blade.php @@ -0,0 +1,218 @@ + + +Create Job + + +

+

+
+
+

Profile

+

This information will be displayed publicly so be careful what you share.

+ +
+
+ +
+
+
workcation.com/
+ +
+
+
+ +
+ +
+ +
+

Write a few sentences about yourself.

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

or drag and drop

+
+

PNG, JPG, GIF up to 10MB

+
+
+
+
+
+ +
+

Personal Information

+

Use a permanent address where you can receive mail.

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

Notifications

+

We'll always let you know about important changes, but you pick what else you want to hear about.

+ +
+
+ By email +
+
+
+
+ + + + + +
+
+
+ +

Get notified when someones posts a comment on a posting.

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

Get notified when a candidate applies for a job.

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

Get notified when a candidate accepts or rejects an offer.

+
+
+
+
+ +
+ Push notifications +

These are delivered via SMS to your mobile phone.

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

+
diff --git a/routes/web.php b/routes/web.php index 4e1f24b..16c992c 100644 --- a/routes/web.php +++ b/routes/web.php @@ -26,7 +26,9 @@ Route::get('/jobs/{id}', function ($id) { return view('jobs/show', ['job' => $job]); }); - +Route::get('/jobs/ceate', function () { + return view('jobs/create'); +});