.pull-left p = "Received any Awards? Who issued you the award?" = simple_form_for current_user, url: profile_questions_path, turboboost: true, validate: true, html: { id: 'strenthen_profile' } do |f| = hidden_field_tag :step, "awards:issuer" = f.fields_for :awards, [f.object.awards.first || f.object.awards.build] do |a| .pull-left = a.input :name, placeholder: 'Name of the Award', label: false, validate: false, input_html:{class: 'inline'} .pull-left = a.input :issuer, placeholder: 'Award Issuer', label: false, validate: false, :class=>'inline' .pull-left button.btn-save | Save .pull-left = link_to 'Skip', edit_profile_questions_path(step: User::PROFILE_QUESTION.rindex('awards:description')), class: 'btn-skip inline', remote: true