diff --git a/resources/css/app.css b/resources/css/app.css index 4726696..b39d4cd 100755 --- a/resources/css/app.css +++ b/resources/css/app.css @@ -73,6 +73,10 @@ @layer components { cursor: pointer; } + .window:not(:last-child) { + margin-bottom: 1rem; + } + .window hr { height: 1px; border-top: 1px solid var(--button-shadow); diff --git a/resources/views/admin.blade.php b/resources/views/admin.blade.php index cf10537..d8290b6 100644 --- a/resources/views/admin.blade.php +++ b/resources/views/admin.blade.php @@ -1,7 +1,7 @@ - - Admin + + +

You're logged in!

-

You're logged in!

- - Categories + Categories +
diff --git a/resources/views/auth/confirm-password.blade.php b/resources/views/auth/confirm-password.blade.php index a975bf7..efd4885 100644 --- a/resources/views/auth/confirm-password.blade.php +++ b/resources/views/auth/confirm-password.blade.php @@ -1,7 +1,5 @@ - - Confirm Password - - + +
This is a secure area of the application. Please confirm your password before continuing. diff --git a/resources/views/auth/forgot-password.blade.php b/resources/views/auth/forgot-password.blade.php index 36d0e3e..ec2dc6e 100644 --- a/resources/views/auth/forgot-password.blade.php +++ b/resources/views/auth/forgot-password.blade.php @@ -1,31 +1,31 @@ - - Forgot Password - -
- Forgot your password? No problem. Just let us know your email address and we - will email you a password reset link that will allow you to choose a new - one. -
- - - - -
- @csrf - -
- - - + + +
+ Forgot your password? No problem. Just let us know your email address and + we will email you a password reset link that will allow you to choose a + new one.
- - - + + + +
+ @csrf + +
+ + + +
+ + +
+
+
diff --git a/resources/views/auth/login.blade.php b/resources/views/auth/login.blade.php index e1e910d..5dbe6de 100644 --- a/resources/views/auth/login.blade.php +++ b/resources/views/auth/login.blade.php @@ -1,7 +1,5 @@ - - Login - - + + diff --git a/resources/views/auth/register.blade.php b/resources/views/auth/register.blade.php index b8b4066..8f4ef05 100644 --- a/resources/views/auth/register.blade.php +++ b/resources/views/auth/register.blade.php @@ -1,72 +1,72 @@ - - Register + + +
+ @csrf - - @csrf + +
+ + + +
- -
- - - -
+ +
+ + + +
- -
- - - -
+ +
+ - -
- + - + +
- -
+ +
+ - -
- + - + +
- -
+
+ Already registered? -
- Already registered? - - -
- - + +
+ +
+
diff --git a/resources/views/auth/reset-password.blade.php b/resources/views/auth/reset-password.blade.php index aa44c28..6b35164 100644 --- a/resources/views/auth/reset-password.blade.php +++ b/resources/views/auth/reset-password.blade.php @@ -1,55 +1,59 @@ - - Reset Password + + +
+ @csrf - - @csrf - - - - - -
- + - -
- - -
- - - -
- - -
- - - - -
+ +
+ + + +
- -
-
+ +
+ + + +
+ + +
+ + + + + +
+ + + +
+
diff --git a/resources/views/auth/verify-email.blade.php b/resources/views/auth/verify-email.blade.php index 3e5490d..ea1707d 100644 --- a/resources/views/auth/verify-email.blade.php +++ b/resources/views/auth/verify-email.blade.php @@ -1,32 +1,32 @@ - - Verify Email - -

- Thanks for signing up! Before getting started, could you verify your email - address by clicking on the link we just emailed to you? If you didn't - receive the email, we will gladly send you another. -

- - @if (session('status') == 'verification-link-sent') + +

- A new verification link has been sent to the email address you provided - during registration. + Thanks for signing up! Before getting started, could you verify your email + address by clicking on the link we just emailed to you? If you didn't + receive the email, we will gladly send you another.

- @endif -
-
- @csrf + @if (session('status') == 'verification-link-sent') +

+ A new verification link has been sent to the email address you provided + during registration. +

+ @endif -
- -
-
+
+
+ @csrf - - @csrf +
+ +
+
- - -
- +
+ @csrf + + +
+
+
+
diff --git a/resources/views/categories/create.blade.php b/resources/views/categories/create.blade.php index f48672c..fdb801f 100644 --- a/resources/views/categories/create.blade.php +++ b/resources/views/categories/create.blade.php @@ -1,15 +1,15 @@ - - New Category + + +
+ @csrf - - @csrf +
+ + + +
-
- - - -
- - -
+ + +
diff --git a/resources/views/categories/index.blade.php b/resources/views/categories/index.blade.php index c342346..fe997fc 100644 --- a/resources/views/categories/index.blade.php +++ b/resources/views/categories/index.blade.php @@ -1,30 +1,35 @@ - - Categories - -
- - - - - - - - - @foreach ($categories as $category) - - - + + +
+
CategoryActions
{{ $category->name }} - View -
+ + + + - @endforeach - -
CategoryActions
-
+ + + @foreach ($categories as $category) + + {{ $category->name }} + + + View + + + + @endforeach + + +
- New + New + diff --git a/resources/views/categories/show.blade.php b/resources/views/categories/show.blade.php index 51a17ce..2ebb5ca 100644 --- a/resources/views/categories/show.blade.php +++ b/resources/views/categories/show.blade.php @@ -1,8 +1,5 @@ - - - Category: {{ $category->name }} - - -

{{ $category->name }}

- All + + + All + diff --git a/resources/views/components/layout/layout.blade.php b/resources/views/components/layout/layout.blade.php index f8725ec..b4e7396 100644 --- a/resources/views/components/layout/layout.blade.php +++ b/resources/views/components/layout/layout.blade.php @@ -1,3 +1,7 @@ +@props([ + 'title', +]) + diff --git a/resources/views/components/window/window.blade.php b/resources/views/components/window/window.blade.php index d36cf9d..52ad5bf 100644 --- a/resources/views/components/window/window.blade.php +++ b/resources/views/components/window/window.blade.php @@ -1,5 +1,4 @@ @props([ - 'title', 'minimize' => true, 'maximize' => false, 'restore' => true, @@ -7,6 +6,10 @@ 'close' => true, ]) +@aware([ + 'title' => config('app.name', 'Laravel'), +]) + @php if ($restore) { $maximize = false; @@ -15,9 +18,7 @@
merge(['class' => 'window']) }}>
- @isset($title) -
{{ $title }}
- @endisset +
{{ $title }}
@if ($minimize || $maximize || $restore || $help || $close)
diff --git a/resources/views/profile/edit.blade.php b/resources/views/profile/edit.blade.php index 3cf3ba0..c5cb619 100644 --- a/resources/views/profile/edit.blade.php +++ b/resources/views/profile/edit.blade.php @@ -1,6 +1,9 @@ - - Profile + + + @include('profile.partials.update-profile-information-form') + - @include('profile.partials.update-profile-information-form') - @include('profile.partials.update-password-form') + + @include('profile.partials.update-password-form') + diff --git a/resources/views/profile/partials/update-password-form.blade.php b/resources/views/profile/partials/update-password-form.blade.php index 169afe1..8b0a577 100644 --- a/resources/views/profile/partials/update-password-form.blade.php +++ b/resources/views/profile/partials/update-password-form.blade.php @@ -1,5 +1,3 @@ -

Update Password

-

Ensure your account is using a long, random password to stay secure.

diff --git a/resources/views/profile/partials/update-profile-information-form.blade.php b/resources/views/profile/partials/update-profile-information-form.blade.php index 279bc06..d5bc74d 100644 --- a/resources/views/profile/partials/update-profile-information-form.blade.php +++ b/resources/views/profile/partials/update-profile-information-form.blade.php @@ -1,5 +1,3 @@ -

Profile Information

-

Update your account's profile information and email address.

+ + Welcome! +