Error Summary

<.error_summary
  id="error-summary-group-validation-errors"
  form={%{id: "user", errors: [address: {"is required", []}, city: {"is invalid", []}, state: {"should be at least %{count} characters", [count: 2]}]}}
/>
<.error_summary
  id="error-summary-group-custom-errors"
  form={%{id: "user", errors: [address: {"Enter location address", []}, city: {"Enter location city", []}, state: {"Enter location state", []}]}}
/>

<form style="margin-top: 2rem; width: 100%;">
  <.input
    type="text"
    id="user_address"
    name="address"
    value="123 Main St"
    label="Address"
    errors={["Error helper text"]}
/>
</form>