Bordered card bundling a legend, description, and a short stack of related inputs.
Requires shadcn/ui initialized. Run npx shadcn@latest init if you haven't.
import { Form9 } from "@/components/beste/piece/form9";
<Form9
legend="Billing address"
description="Used on invoices and receipts."
fields={[
{
"label": "Street",
"value": "221B Riverside Ave"
},
{
"label": "City",
"value": "Istanbul"
},
{
"label": "Postal code",
"value": "34381"
}
]}
/>