diff --git a/resources/views/pages/settings.blade.php b/resources/views/pages/settings.blade.php new file mode 100644 index 00000000..be7dc92b --- /dev/null +++ b/resources/views/pages/settings.blade.php @@ -0,0 +1,70 @@ +@extends('layouts.base_portal') +@section('inner_content') +
+
+
+
+
+
+
+
+
+
+
+
+ +
+
+
+
+
User Profile
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ +
+
+
+
+
Complete
+
+
+
+
+
+
+
+
+
+
+
+
+

active

+
+
+
+
+

complete

+
+
+
+
+
+
+
+
+@endsection \ No newline at end of file diff --git a/resources/views/partials/header.blade.php b/resources/views/partials/header.blade.php index d3a15ad2..685d3f27 100644 --- a/resources/views/partials/header.blade.php +++ b/resources/views/partials/header.blade.php @@ -17,6 +17,15 @@ +
+ +
+
+ +
+
+
+
diff --git a/resources/views/partials/menu.blade.php b/resources/views/partials/menu.blade.php index c32eb3df..cf62bda3 100644 --- a/resources/views/partials/menu.blade.php +++ b/resources/views/partials/menu.blade.php @@ -129,6 +129,14 @@
Shipping Queue
+
+
+ +
+
+
Settings
+
+
diff --git a/routes/web.php b/routes/web.php index 6c3097e4..b3858c11 100644 --- a/routes/web.php +++ b/routes/web.php @@ -150,3 +150,7 @@ Route::get('/debug', function (){ dd($issues); }); + +Route::get('/settings', function () { + return view('pages.settings'); +})->name('settings'); \ No newline at end of file