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'; export default function Edit({ auth, mustVerifyEmail, status }: PageProps<{ mustVerifyEmail: boolean, status?: string }>) { return (
); }