.pull-left.fs10 p = "What is your major?" = simple_form_for current_user, url: profile_questions_path, turboboost: true, validate: true, html: { id: 'strengthen_profile' } do |f| = hidden_field_tag :step, "educations:field_of_study" .pull-left = f.fields_for :educations, [f.object.educations.first || f.object.educations.build] do |e| = e.input :field_of_study, placeholder: 'Major', label: false .pull-left button.btn-save | Save .pull-left.mt20 = link_to 'Skip', edit_profile_questions_path(step: User::PROFILE_QUESTION.rindex('educations:field_of_study')), class: 'btn-skip mt4', remote: true