Files
baclight/app/views/card_providers/edit.html.erb
T

11 lines
604 B
Plaintext
Raw Normal View History

<% content_for :title, "Editing card provider" %>
<div class="md:w-2/3 w-full">
<h1 class="font-bold text-4xl">Editing card provider</h1>
<%= render "form", card_provider: @card_provider %>
<%= link_to "Show this card provider", @card_provider, class: "w-full sm:w-auto text-center mt-2 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" %>
<%= link_to "Back to card providers", card_providers_path, class: "w-full sm:w-auto text-center mt-2 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" %>
</div>