.pull-left p = "Experience - University Name" = simple_form_for current_user, url: profile_questions_path, turboboost: true, validate: true, html: { id: 'strenthen_profile' } do |f| = hidden_field_tag :step, "positions:university_name" .pull-left = f.fields_for :positions, [f.object.positions.first || f.object.positions.build] do |a| = a.input :university_name, placeholder: 'University Name', label: false .pull-left.mt7.mr5 | From .pull-left.mr5.iset-tp = a.input :start_date, as: :date, label: false, start_year: Date.today.year - 60, end_year: Date.today.year, default: { year: 2000 , month: 1}, :use_month_numbers => true, :order => [:month , :year], wrapper_html: {class: 'inline'} .pull-left.mt7.mr5 | to .pull-left.mr5.iset-tp = a.input :end_date, as: :date, label: false, start_year: Date.today.year - 60, end_year: Date.today.year, :use_month_numbers => true,:order => [:month , :year], wrapper_html: {class: 'inline'} .pull-left button.btn-save | Save .pull-left = link_to 'Skip', edit_profile_questions_path(step: User::PROFILE_QUESTION.rindex('positions:description')), class: 'btn-skip inline', remote: true