dawarich/app/views/trips/edit.html.erb

14 lines
420 B
Text
Raw Normal View History

2024-11-28 09:54:36 -05:00
<div class="mx-auto md:w-2/3 w-full my-5">
<h1 class="font-bold text-4xl">Editing trip</h1>
<%= render "form", trip: @trip %>
2024-11-28 09:54:36 -05:00
<!-- Action Buttons Section -->
<div class="bg-base-100 items-center mt-8 mb-4">
<div class="flex flex-wrap gap-2 justify-center">
<%= link_to "Show this trip", @trip, class: "btn" %>
<%= link_to "Back to trips", trips_path, class: "btn" %>
</div>
</div>
</div>