Form-input pairing. Required-asterisk + error states.
Standard form label. `required` adds a red asterisk; `error` shifts the text + asterisk to the error color. Pair with `htmlFor` to wire to its control.
import { Label } from "@/components/ui/label";
<Label htmlFor="email" required>Email</Label>
<Input id="email" />components/ui/ folder. You own the code.