From 04675dfd37261e2d96e79291315a09a136150bdd Mon Sep 17 00:00:00 2001 From: Frank John Begornia Date: Fri, 17 Apr 2026 14:18:31 +0800 Subject: [PATCH] style: enhance authentication forms with improved layout and design --- resources/views/auth/login.blade.php | 206 ++++++++++---- resources/views/auth/password.blade.php | 186 ++++++++++--- resources/views/auth/register.blade.php | 348 ++++++++++++++++-------- resources/views/auth/reset.blade.php | 196 +++++++++---- 4 files changed, 675 insertions(+), 261 deletions(-) diff --git a/resources/views/auth/login.blade.php b/resources/views/auth/login.blade.php index ebfa8b1..7b42ab3 100644 --- a/resources/views/auth/login.blade.php +++ b/resources/views/auth/login.blade.php @@ -2,58 +2,168 @@ @section('content') -
-
-
-
-
-

S I G N - I N

-
-
-
-
-
-
- -
- - - -
-
- - - -
-
- -

(if this is a private computer)

-
- - Forgot Your Password? -
- -
-
-
-
-
-

Don't have an account? Register Now!

- Register -
-
-
+ +
@endsection diff --git a/resources/views/auth/password.blade.php b/resources/views/auth/password.blade.php index 539d4d2..7f3b5b5 100644 --- a/resources/views/auth/password.blade.php +++ b/resources/views/auth/password.blade.php @@ -2,54 +2,154 @@ @section('content') -
-
-
-
-
-

R E S E T   P A S S W O R D

-
-
-
-
- @if (session('status')) -
- {{ session('status') }} -
- @endif - @if (count($errors) > 0) -
- Whoops! There were some problems with your input.

-
    - @foreach ($errors->all() as $error) -
  • {{ $error }}
  • - @endforeach -
-
- @endif -
- -
- - - -
- -
-

-
-
-
+
+
+

Forgot password

+

Enter your email and we’ll send you a reset link.

+ + @if (session('status')) +
+ {{ session('status') }}
-
+ @endif + + @if (count($errors) > 0) +
+ Whoops! There were some problems with your input.

+
    + @foreach ($errors->all() as $error) +
  • {{ $error }}
  • + @endforeach +
+
+ @endif + +
+ +
+ + +
+ +
+ +
@endsection diff --git a/resources/views/auth/register.blade.php b/resources/views/auth/register.blade.php index b01e9f2..caa6ceb 100644 --- a/resources/views/auth/register.blade.php +++ b/resources/views/auth/register.blade.php @@ -2,136 +2,242 @@ @section('content') -
-
-
-
-
-
-

R E G I S T E R

-
-
-
-
-
-
-
-
Personal Information
-
- - -
- - -
+
+
+

Create account

+

Fill in your details to get started.

+
+ +
Personal Information
+ + -
- - -
- - - -
- - -
- -
- - -
- -
- - -
- -
- - -
- -
-
Address Information
-
- -
- - -
- -
- - - -
- -
- - -
- -
- - -
- -
- - -
- -
- - -
- - -
-
-
-
-

By clicking Register, you agree to our Terms of Use and that you have read our Privacy Policy.

-
-
- -
- - -
-
-
-
-
-

Have already an account?

- Login here -
-
-
-
+
+ +
-
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
Address Information
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+
+
+ +

By clicking Register, you agree to our Terms of Use and that you have read our Privacy Policy.

+ +
+ +
+ + +
@endsection \ No newline at end of file diff --git a/resources/views/auth/reset.blade.php b/resources/views/auth/reset.blade.php index 66e14db..22ab10a 100644 --- a/resources/views/auth/reset.blade.php +++ b/resources/views/auth/reset.blade.php @@ -3,60 +3,158 @@ @section('content') -
-
-
-
-
-

R E S E T   P A S S W O R D

-
-
-
-
- @if (count($errors) > 0) -
- Whoops! There were some problems with your input.

-
    - @foreach ($errors->all() as $error) -
  • {{ $error }}
  • - @endforeach -
-
- @endif -
- - -
- - - -
-
- - - -
-
- - - -
- -
-

-
-
-
+
+
+

Reset password

+

Set a new password for your account.

+ + @if (count($errors) > 0) +
+ Whoops! There were some problems with your input.

+
    + @foreach ($errors->all() as $error) +
  • {{ $error }}
  • + @endforeach +
-
+ @endif + +
+ + + +
+ + +
+
+ + +
+
+ + +
+ +
+ +
@endsection