<%= styled_form_with model: institution, class: "space-y-4", data: { turbo_frame: "_top", controller: "profile-image-preview" } do |f| %>
<%= f.label :logo do %>
<% persisted_logo = institution_logo(institution) %> <% if persisted_logo %> <%= image_tag persisted_logo, class: "absolute inset-0 rounded-full w-full h-full object-cover" %> <% end %>
<% unless persisted_logo %> <%= lucide_icon "image-plus", class: "w-5 h-5 text-gray-500 cursor-pointer", data: { profile_image_preview_target: "template" } %> <% end %>
<% end %>
<%= f.file_field :logo, accept: "image/png, image/jpeg", class: "hidden", data: { profile_image_preview_target: "fileField", action: "profile-image-preview#preview" } %> <%= f.text_field :name, label: t(".name") %> <%= f.submit %> <% end %>