FIELDS

ACTIVE FIELDS

No fields added yet. Click on "Add Field" to get started.

FORM VIEW

No fields added yet. Add some fields from the Fields section to see them here.
schema.ts
1import { z } from "zod";
2
3export const formSchema = z.object({
4  // Add fields to see the generated schema
5});
6
7export type FormData = z.infer<typeof formSchema>;