<% if resource.errors.any? %>
<%= heroicon "check-circle", variant: :solid, options: { class: "h-5 w-5 text-red-400" } %>

<%= I18n.t("errors.messages.not_saved", count: resource.errors.count, resource: resource.class.model_name.human.downcase) %>

    <% resource.errors.full_messages.each do |message| %>
  • <%= message %>
  • <% end %>
<% end %>