Forms
Contact us, event signups, enquiry forms — every submission is kept in the admin, not just emailed out.

What a form needs
- Fields: text, multi-line, dropdown, checkbox, date, file upload
- Required flags and validation
- After submit: what message to show, and whether to redirect elsewhere
- Notifications: who gets told on submit, and what the email says
Submissions can be exported to CSV.
Question: Don't name a field name
Avoid name as a field identifier. It collides with the existing HTML attribute, and that field may be filtered out on submit. Use something like full_name or customer_name instead.