Skip to content

Commit 304fc32

Browse files
Move status on forgot-password page
1 parent ca6fefb commit 304fc32

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

resources/js/pages/auth/forgot-password.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,8 @@ export default function ForgotPassword({ status }: { status?: string }) {
2222
};
2323

2424
return (
25-
<AuthLayout title="Forgot Password" description="Enter your email to receive a password reset link">
26-
<Head title="Forgot Password" />
27-
28-
{status && <div className="mb-4 text-center text-sm font-medium text-green-600">{status}</div>}
25+
<AuthLayout title="Forgot password" description="Enter your email to receive a password reset link">
26+
<Head title="Forgot password" />
2927

3028
<div className="space-y-6">
3129
<form onSubmit={submit}>
@@ -51,6 +49,8 @@ export default function ForgotPassword({ status }: { status?: string }) {
5149
Email password reset link
5250
</Button>
5351
</div>
52+
53+
{status && <div className="mb-4 text-center text-sm font-medium text-green-600">{status}</div>}
5454
</form>
5555

5656
<div className="text-muted-foreground space-x-1 text-center text-sm">

0 commit comments

Comments
 (0)