- @object = DummyFormObject.new(has_errors: false)

.row.double-gap-top
  %form.uc-form
    = simple_fields_for @object do |f|
      %fieldset
        %legend.uc-form-legend Full Name
        .row
          = f.input :prefix,
            as: :select,
            collection: [['Mr.'], ['Mrs.'], ['Ms.']],
            label: false,
            input_html: { :'aria-label' => 'Prefix' },
            wrapper_html: {class: 'two twelfths small-tablet'}
          = f.input :first_name,
            label: false,
            input_html: { :'aria-label' => 'First', placeholder: 'First' },
            wrapper_html: {class: 'three twelfths small-tablet pad-left no-pad-mobile'}
          = f.input :middle_name,
            label: false,
            input_html: { :'aria-label' => 'Middle', placeholder: 'Middle' },
            wrapper_html: {class: 'two twelfths small-tablet pad-left no-pad-mobile'}
          = f.input :last_name,
            label: false,
            input_html: { :'aria-label' => 'Last', placeholder: 'Last' },
            wrapper_html: {class: 'three twelfths small-tablet pad-left no-pad-mobile'}
          = f.input :suffix,
            as: :select,
            collection: [['Jr.'], ['Sr.']],
            label: false,
            input_html: { :'aria-label' => 'Suffix' },
            wrapper_html: {class: 'two twelfths small-tablet pad-left no-pad-mobile'}