import AuthenticatedLayout from "@/Layouts/AuthenticatedLayout"; import DeleteUserForm from "./Partials/DeleteUserForm"; import UpdatePasswordForm from "./Partials/UpdatePasswordForm"; import UpdateProfileInformationForm from "./Partials/UpdateProfileInformationForm"; import { Head } from "@inertiajs/react"; import { PageProps } from "@/types"; import { Card, CardContent, CardDescription, CardHeader, CardTitle, } from "@/Components/ui/card"; export default function Edit({ auth, mustVerifyEmail, status, }: PageProps<{ mustVerifyEmail: boolean; status?: string }>) { return ( Profile } >
Profile Information Update your account's profile information and email address. Update Password Ensure your account is using a long, random password to stay secure. Delete Account Once your account is deleted, all of its resources and data will be permanently deleted. Before deleting your account, please download any data or information that you wish to retain.
); }