Partial _form not rendering

I am working through the agile web development with rails and after
generating the pages from the “product” scaffold, the partial within
the new.rhtml file no longer renders to the browser.

Is there something that I am missing here?

Thanks for any help.

(if this is a double post, it is because I posted it 10 min ago and it
didn’t show up)

New product

<% form_tag :action => ‘create’ do %>
<%= render :partial => ‘form’ %>
<%= submit_tag “Create” %>
<% end %>

<%= link_to ‘Back’, :action => ‘list’ %>

<%= error_messages_for ‘product’ %>

Title
<%= text_field 'product', 'title' %>

Description
<%= text_area 'product', 'description' %>

Image url
<%= text_field 'product', 'image_url' %>

Price
<%= text_field 'product', 'price' %>