import React from "react"; import AppLayout from "@/layouts/app-layout"; import { Button, Card, Container, Group, Title } from "@mantine/core"; import { IconArrowLeft } from "@tabler/icons-react"; import { Link } from "@inertiajs/react"; import UserForm from "@/forms/management/UserForm"; import { Role, User } from "@/types"; interface Props { roles: Role[]; managers: { value: string; label: string }[]; user: User; } export default function Page({ roles, managers, user }: Props) { return ( Edit User ); }