import { login } from '@/routes'; import { store } from '@/routes/register'; import { Form, Head } from '@inertiajs/react'; import InputError from '@/components/InputError'; import TextLink from '@/components/TextLink'; import { Button } from '@/components/ui/button'; import { Input } from '@/components/ui/input'; import { Label } from '@/components/ui/label'; import { Spinner } from '@/components/ui/spinner'; import AuthLayout from '@/layouts/AuthLayout'; export default function Register() { return (
{({ processing, errors }) => ( <>
Already have an account?{' '} Log in
)}
); }