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

11 lines
548 B
Plaintext
Raw Normal View History

2026-07-23 10:32:51 -04:00
<% content_for :title, "Editing broker" %>
<div class="md:w-2/3 w-full">
<h1 class="font-bold text-4xl">Editing broker</h1>
<%= render "form", broker: @broker %>
<%= link_to "Show this broker", @broker, 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 brokers", brokers_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>