Files
vito/resources/js/pages/profile/index.tsx
2025-05-18 18:25:27 +02:00

20 lines
663 B
TypeScript

import { Head } from '@inertiajs/react';
import SettingsLayout from '@/layouts/settings/layout';
import Container from '@/components/container';
import UpdatePassword from '@/pages/profile/components/update-password';
import UpdateUser from '@/pages/profile/components/update-user';
import Heading from '@/components/heading';
export default function Profile() {
return (
<SettingsLayout>
<Head title="Profile settings" />
<Container className="max-w-5xl">
<Heading title="Profile settings" description="Manage your profile settings." />
<UpdateUser />
<UpdatePassword />
</Container>
</SettingsLayout>
);
}