%= image_tag @product.featured_image if @product.featured_image.attached? %>
<% cache @product do %>
<%= @product.name %>
<%= @product.description %>
<% end %>
<%= render "inventory", product: @product %>
<% if authenticated? %>
<%= link_to "Edit", edit_product_path(@product) %>
<%= button_to "Delete", @product, method: :delete,
data: { turbo_confirm: "Are you certain?" } %>
<% end %>
<%= link_to "Back", products_path %>