<% order_form.fields_for :bill_address do |bill_form| %>

<%= t("billing_address")%>

<%= bill_form.text_field :firstname, :class => 'required' -%>*

<%= bill_form.text_field :lastname, :class => 'required' -%>*

<%= bill_form.text_field :address1, :class => 'required' -%>*

<%= bill_form.text_field :address2 %>

<%= bill_form.text_field :city, :class => 'required' -%>*

<%= collection_select("order[bill_address_attributes]", :state_id, @states, :id, :name, {:include_blank => true}, {:style=> 'width:150px;'}) %> *

<%= bill_form.text_field :zipcode, :class => 'required' -%>*

<%= bill_form.collection_select :country_id, @countries, :id, :name, {}, {:style => 'width:150px;', :class => 'required'} %>

<%= bill_form.text_field :phone, :class => 'required' -%>*

<% if Spree::Config[:alternative_billing_phone] %>

<%= bill_form.text_field :alternative_phone -%>

<% end %>
"/>
<% end %>