<%= f.field_container :environment do %>
<%= label_tag nil, Spree::AuthenticationMethod.human_attribute_name(:environment) %>
<%= collection_select(:authentication_method, :environment, Rails.configuration.database_configuration.keys, :to_s, :titleize, {}, { class: 'select2 fullwidth' }) %>
<% end %>
<%= f.field_container :provider do %>
<%= f.label :provider, Spree.t(:social_provider) %>
<%= f.select :provider, Spree::AuthenticationMethod.provider_options, {}, { include_blank: false, class: 'select2 fullwidth' } %>
<% end %>
<%= f.field_container :active do %>
<%= f.label :active, Spree.t(:active) %>
<%= f.radio_button :active, :true %>
<%= Spree.t(:say_yes) %>
<%= f.radio_button :active, :false %>
<%= Spree.t(:say_no) %>
<% end %>