When I try to submit the form its giving me the error
No route matches [POST] \"/articles/new\"
the files are: new.html.erb this file
change:
resources :article
to:
resources :articles #plural
that way it will map to:
articles_path POST /articles(.:format) articles#create