Making my form as friendly as possible, I wish to repopulate it with the details entered by the user even when they got something wrong. In this case, I am using "email_field" in volt to show a a field for email entry that will use initial validation by the browser when supported (Opera/Chrome but not Safari). I then server-side check the email address is both valid and not a common disposable address. However, "email_field" and its php contemporary Phalcon::Tag::emailField do not respect passing in a "value" default, only "class". NOTE: I AM ASKING ABOUT VALUES NOT PLACEHOLDERS!
How can I achieve the equivalent of the following?:
{{ email_field("email","value":"somedefault") }}