{ "$schema": "https://ui.shadcn.com/schema/registry-item.json", "name": "auth-reset-password-page", "dependencies": [ "@inertiajs/react" ], "registryDependencies": [ "@launch/auth-layout", "@launch/form-errors", "@launch/input-error", "@launch/password-input", "@launch/text-link", "button", "input", "label", "spinner" ], "files": [ { "path": "registry/new-york-v4/pages/auth/reset-password.tsx", "content": "import { Form, Head } from \"@inertiajs/react\";\nimport InputError from \"@/components/input-error\";\nimport PasswordInput from \"@/components/password-input\";\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 { update } from \"@/routes/password\";\n\ntype Props = {\n email: string;\n token: string;\n};\n\nexport default function ResetPassword({ email, token }: Props) {\n return (\n <>\n \n\n \n {({ processing, errors }) => (\n <>\n \n\n
\n \n \n \n
\n\n
\n \n \n \n
\n\n
\n \n \n \n
\n\n \n \n )}\n \n \n );\n}\n\nResetPassword.layout = {\n title: \"Reset password\",\n description: \"Enter your new password below\",\n};\n", "type": "registry:file", "target": "resources/js/pages/auth/reset-password.tsx" } ], "type": "registry:block" }