<%= f.label :price %>
<%= render "spree/admin/shared/number_with_currency", f: f, amount_attr: :price, currency: @variant.default_price_or_build.currency %>
<% if show_rebuild_vat_checkbox? %>
<%= render "spree/admin/shared/rebuild_vat_prices_checkbox", form: f, model_name: "variant", wrapper_class: "field" %>
<% end %>
<%= f.label :cost_price %>
<%= render "spree/admin/shared/number_with_currency", f: f, amount_attr: :cost_price, currency_attr: :cost_currency %>
<%= f.label :tax_category %>
<%= f.field_hint :tax_category %>
<%= f.collection_select :tax_category_id,
@tax_categories,
:id,
:name,
{ include_blank: t('.use_product_tax_category') },
{ class: 'custom-select fullwidth' } %>