I have an app that has a problem model and when I go to create a record the submit button does nothing. No errors given it just simply doesnt execute, unless I refresh the p
Your HTML is invalid, the submit button is actually not nested under the form tag. Try changing your view code to this:
<%= form_for @problem do |f| %>
<%= f.text_field :name, placeholder: "Name your problem!" %>
<%= f.text_field :url, placeholder: "Link to any supporting material" %>
<%= f.text_area :description %>
<%= f.submit "Create" %>
<% end %>