I worked off of a tutorial and it seems the syntax for my new.html.erb is outdated. I am not certain for sure but here is my code:
<h1>Add new skill</h1>
<%= form_tag :action => 'create' %>
<p><label for="skill_title">Title</label>:
<%= text_field 'skill', 'title' %></p>
<%= collection_select(:skill,:id, :title) %></p>
<%= submit_tag "Create" %>
<%= end_form_tag %>
<%= link_to 'Back', {:action => 'list'} %>
my error is this:
ArgumentError in Skills#new
Showing app/views/skills/new.html.erb where line #5 raised:
wrong number of arguments (3 for 5..7)
and it is pointing to this line specifically as the problem:
<%= collection_select(:skill,:id, :title) %></p>
I will keep researching and hopefully will find my answer. Thank you anyone who takes a look, cheers! and good luck!