<%= form_tag transfer_stock_admin_stock_locations_path do %>
<%= Spree.t(:move_stock_between_locations)%>
<%= 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' %>
<%= button Spree.t(:transfer_stock), 'add' %> <%= Spree.t(:or) %> <%= button_link_to Spree.t('actions.cancel'), collection_url, icon: 'cancel.svg' %>
<% end %>