React Hook Form with Next , Zod and and Schadcn UI
Mar 5, 2025 · 7 min read · first make the zod Schema for the data import * as z from 'zod' // login schema export const LoginSchema = z.object({ email:z.string().email({message:"email required"}), password:z.string().min(1,{message:"password is required"}) }) //regis...
Join discussion

