%= form_with url: bucket_bubble_boosts_path(bubble.bucket, bubble), class: "pad-inline flex align-center gap" do %>
<%= text_field_tag :boost_count, bubble.boosts_count, min: 1, class: "boost__input input", autocomplete: "off" %>
<%= bubble.boosts_count == 1 ? "boost" : "boosts" %>
<%= tag.button class: "btn", type: :submit, style: "font-size: 0.5em" do %>
<%= image_tag "add.svg", aria: { hidden: true }, size: 24 %>
Boost
<% end %>
<% end %>