I\'m probably missing something obvious here but here\'s what I\'m trying to do.
From the view, I\'m calling a custom helper function
As it turns out, I had to do something like this
def display_services html = "" html << (form_for @user do |f| f.text_field ... end) html << "" end
Note the () wrapped around the form block. If someone has a better solution, let me know.