Company name: <%= f.text_field :title, :value => @supplier.title %>
Company Description: <%= f.text_field :notes, :value => @supplier.notes %>

Company Information

Phone: <%= f.text_field :phone, :value => @supplier.phone %>
Address: <%= f.text_field :address1, :value => @supplier.address1 %>
Town: <%= f.text_field :town, :value => @supplier.town %>
State: <%= f.collection_select :state_id, State.find(:all, :order => 'name ASC'), :id, :name, :include_blank => true %>
Market: <%= f.collection_select :city_id, City.find(:all, :order => 'name ASC'), :id, :name, :include_blank => true %>
Zip-code: <%= f.text_field :zip_code, :value => @supplier.zip_code %>
Fax: <%= f.text_field :fax, :value => @supplier.fax %>
Email: <%= f.text_field :email, :value => @supplier.email %>
Facebook: <%= f.text_field :facebook, :value => @supplier.facebook %>
Twitter: <%= f.text_field :twitter, :value => @supplier.twitter %>
Website: <%= f.text_field :website, :value => @supplier.website %>
Products Sold: <%= f.text_area :products_sold %>

Owner Information

Owner Name: <%= f.text_field :name, :value => @supplier.name %>
Owner Description: <%= f.text_field :description2, :value => @supplier.description2 %>