#591 - server-providers

This commit is contained in:
Saeed Vaziry
2025-05-18 21:12:06 +02:00
parent 8b4d156afa
commit 1ed5d7362b
18 changed files with 349 additions and 93 deletions

View File

@ -2,7 +2,7 @@ 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 UpdateProfile from '@/pages/profile/components/update-profile';
import Heading from '@/components/heading';
export default function Profile() {
@ -11,7 +11,7 @@ export default function Profile() {
<Head title="Profile settings" />
<Container className="max-w-5xl">
<Heading title="Profile settings" description="Manage your profile settings." />
<UpdateUser />
<UpdateProfile />
<UpdatePassword />
</Container>
</SettingsLayout>