<%= render component('ui/forms/search/result').new do %> <%= form_for(@order.line_items.build(variant: @variant), url: solidus_admin.order_line_items_path(@order), method: :post, html: { "data-controller": "readonly-when-submitting", class: "flex items-center", }) do |f| %> <%= hidden_field_tag("#{f.object_name}[variant_id]", @variant.id) %>
<%= render component("ui/thumbnail").new( src: @image&.url(:small), alt: @variant.name ) %>
<%= @variant.name %>
SKU: <%= @variant.sku %> <%= @variant.options_text.presence&.prepend("- ") %>
<%= render component("products/stock").from_variant(@variant) %> <%= @variant.display_price.to_html %>
<% end %> <% end %>