.pull-left p = "When do you graduate?" = simple_form_for current_user, url: profile_questions_path, turboboost: true, validate: true, html: { id: 'strengthen_profile' } do |f| = hidden_field_tag :step, "educations:end_date" .pull-left.grad-year = f.fields_for :educations, [f.object.educations.first || f.object.educations.build] do |e| = e.input :end_date, start_year: Date.today.year - 60, end_year: Date.today.year + 5, as: :date, discard_day: true, discard_month: true, label: "Graduation Year", wrapper_html: {class: 'div-rpad-sel'} .pull-left button.btn-save | Save .pull-left = link_to 'Skip', edit_profile_questions_path(step: User::PROFILE_QUESTION.rindex('educations:end_date')), class: 'btn-skip inline', remote: true