<% if notice.present? %>
<%= notice %>
<% end %>
<%= link_to "Products", products_path, class: "rounded-lg px-5 py-3 bg-gray-100 hover:bg-gray-50 inline-block font-medium mb-6" %>
Showing product
<%= image_tag @product.images.first, class:"w-full h-96 object-cover" %>
<% @product.images[1..].each do |image| %>
<%= image_tag image, class: "w-full h-32 object-cover mt-2 mr-2" %>
<% end %>
<%= @product.name %>
<%= @product.description %>
$<%= @product.price %>
<% if current_admin %>
<%= link_to "Edit this product", edit_product_path(@product), class: "rounded-lg px-5 py-3 bg-gray-100 hover:bg-gray-50 inline-block font-medium" %>
<%= link_to "Back to products", products_path, class: "w-full sm:w-auto text-center sm:mt-0 sm:ml-2 rounded-md px-3.5 py-2.5 bg-gray-100 hover:bg-gray-50 inline-block font-medium" %>
<%= button_to "Delete this product", @product, method: :delete, form_class: "sm:inline-block mt-2 sm:mt-0 sm:ml-2", class: "w-full rounded-md px-3.5 py-2.5 text-white bg-red-600 hover:bg-red-500 font-medium cursor-pointer", data: { turbo_confirm: "Are you sure?" } %>
<% end %>