You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
466 B
10 lines
466 B
<% content_for :title, "Editing product" %>
|
|
|
|
<div class="md:w-2/3 w-full">
|
|
<h1 class="font-bold text-4xl">Editing product</h1>
|
|
|
|
<%= render "form", product: @product %>
|
|
|
|
<%= link_to "Show this product", @product, class: "ml-2 rounded-md px-3.5 py-2.5 bg-gray-100 hover:bg-gray-50 inline-block font-medium" %>
|
|
<%= link_to "Back to products", products_path, class: "ml-2 rounded-md px-3.5 py-2.5 bg-gray-100 hover:bg-gray-50 inline-block font-medium" %>
|
|
</div>
|