Hi,
I have used bootstrap nested form like,
<%= bootstrap_nested_form_for(@user) do |f| %>
<%= f.email_field :email,help: 'Hint comes here' %>
<% end %>
When there is error on the page it will replace help span with inline error span. How to keep both help and inline error without using lebel_error and f.alert_message.
Hi,
I have used bootstrap nested form like,
<%= bootstrap_nested_form_for(@user) do |f| %><%= f.email_field :email,help: 'Hint comes here' %><% end %>When there is error on the page it will replace help span with inline error span. How to keep both help and inline error without using lebel_error and f.alert_message.