<%= shipment_form.label :shipping_method_id, t(:shipping_method) + ':' %>
<%= shipment_form.select :shipping_method_id, @shipping_methods.map {|sm| ["#{sm.name} - #{sm.zone.name}", sm.id] }, {}, {:class => 'select2 fullwidth'} %>
<%= shipment_form.label :tracking, t(:tracking) + ':' %>
<%= shipment_form.text_field :tracking, :class => 'fullwidth' %>
<% if Spree::Config[:shipping_instructions] %>
<%= shipment_form.label :special_instructions, t(:special_instructions) + ':' %>
<%= shipment_form.text_area :special_instructions, :class => 'fullwidth' %>
<% end %>