{ "$schema": "https://ui.shadcn.com/schema/registry-item.json", "name": "auth-forgot-password-page", "dependencies": [ "@inertiajs/react" ], "registryDependencies": [ "@launch/auth-layout", "@launch/form-errors", "@launch/input-error", "@launch/text-link", "button", "input", "label", "spinner" ], "files": [ { "path": "registry/new-york-v4/pages/auth/forgot-password.tsx", "content": "import { Form, Head } from \"@inertiajs/react\";\nimport InputError from \"@/components/input-error\";\nimport TextLink from \"@/components/text-link\";\nimport { Button } from \"@/components/ui/button\";\nimport { toastFirstFormError } from \"@/lib/form-errors\";\nimport { Input } from \"@/components/ui/input\";\nimport { Label } from \"@/components/ui/label\";\nimport { Spinner } from \"@/components/ui/spinner\";\nimport { email } from \"@/routes/password\";\nimport { login } from \"@/routes\";\n\ntype Props = {\n status?: string;\n};\n\nexport default function ForgotPassword({ status }: Props) {\n return (\n <>\n \n\n {status && (\n
{status}
\n )}\n\n
\n {({ processing, errors }) => (\n <>\n
\n \n \n \n
\n\n \n\n
\n Remember your password? Log in\n
\n \n )}\n
\n \n );\n}\n\nForgotPassword.layout = {\n title: \"Forgot password\",\n description: \"Enter your email to receive a password reset link\",\n};\n", "type": "registry:file", "target": "resources/js/pages/auth/forgot-password.tsx" } ], "type": "registry:block" }