Currently only Ruby objects can be passed into a Superform, like this: ```ruby Form.new(User.new) ``` To enable quick & dirty forms for prototyping and profit, support passing in hashes like this: ```ruby Form.new({name: "Brad", email: "brad@example.com"}) ```