module SimpleForm::Helpers::Required

def required_class

regardless of the required option.
Do not use has_required? because we want to add the class
def required_class
  required_field? ? :required : :optional
end