dawarich/app/views/points/_form.html.erb
2024-05-23 20:12:23 +02:00

17 lines
604 B
Text

<%= form_with(model: point, class: "contents") do |form| %>
<% if point.errors.any? %>
<div id="error_explanation" class="bg-red-50 text-red-500 px-3 py-2 font-medium rounded-lg mt-3">
<h2><%= pluralize(point.errors.count, "error") %> prohibited this point from being saved:</h2>
<ul>
<% point.errors.each do |error| %>
<li><%= error.full_message %></li>
<% end %>
</ul>
</div>
<% end %>
<div class="inline">
<%= form.submit class: "rounded-lg py-3 px-5 bg-blue-600 text-white inline-block font-medium cursor-pointer" %>
</div>
<% end %>