<%= label_tag :stock_location_from_id, Spree.t(:transfer_from_location) %>
<%= select_tag :stock_location_from_id, options_from_collection_for_select(@stock_locations, :id, :name), class: 'select2' %>
<%= label_tag :stock_location_to_id, Spree.t(:transfer_to_location) %>
<%= select_tag :stock_location_to_id, options_from_collection_for_select(@stock_locations, :id, :name), class: 'select2' %>
<%= label_tag 'variant_id', Spree.t(:variant) %>
<%= select_tag :variant_id, options_from_collection_for_select(@variants, :id, :name_and_sku), class: 'select2' %>
<%= label_tag 'quantity', Spree.t(:quantity) %>
<%= number_field_tag :quantity, 1, class: 'form-control' %>