Field
Each quote should record client name, amount, date, and status—just these four, nothing more for now.
Each quote should record client name, amount, date, and status—just these four, nothing more for now.
Fields drive the form: Each input on the form maps to one field. Four fields means the create page asks for exactly four things.
Fields drive the list: Each column in the list is a field. Whatever you will search by later should be a field now.
Fields drive validation: Amount must be a number, date must be pickable—validation follows the field, not the page.
Keep the quote tool to four fields for now: client name, amount, date, and status. Name and amount are required, date uses a date picker, status picks from "following up / won / archived." Do not add other fields yet.