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 } from "@/types"; interface Props { roles: Role[]; managers: { value: string; label: string }[]; } export default function Page({ roles, managers }: Props) { return ( Create User ); }