@(personForm: Form[Person])(implicit messages: play.api.i18n.Messages) @implicitField = @{ helper.FieldConstructor(fields.f) } Questions Three

Answer me these questions three:

@if(personForm.hasGlobalErrors) { @for(error <- personForm.globalErrors) {

@error.message

} } @helper.form(action = routes.QuestionsThreeController.submit()) { @helper.inputText(personForm("name"), '_label -> "What is your name?", '_showConstraints -> false) @helper.inputText(personForm("quest"), '_label -> "What is your quest?", '_showConstraints -> false) @helper.inputText(personForm("favoriteColor"), '_label -> "What is your favorite color?")
}