mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-08-02 20:15:22 +02:00
11 lines
353 B
Text
11 lines
353 B
Text
|
<%= modal do %>
|
||
|
<article class="mx-auto w-full p-4 space-y-4">
|
||
|
<header class="flex justify-between">
|
||
|
<h2 class="font-medium text-xl"><%= t(".edit") %></h2>
|
||
|
<%= lucide_icon "x", class: "w-5 h-5 text-gray-500", data: { action: "click->modal#close" } %>
|
||
|
</header>
|
||
|
|
||
|
<%= render "form", category: @category %>
|
||
|
</article>
|
||
|
<% end %>
|