create('Address', array('action' => 'add/customerid:'.$customer['Customer']['id']));?>
input('address', array('label' => 'Address', 'title' => 'The Address to be added')); echo $form->input('city', array('label' => 'City', 'title' => 'Name of the City/Suburb for this Address')); echo $form->input('state_id'); echo $form->input('postcode', array('label' => 'Post Code', 'title' => 'The Post Code for this Address. Eg. 2015 for Alexandria')); echo $form->input('country_id'); echo $form->input('type', array('label' => 'Address Type (Billing,Shipping or Both)', 'options' => array('Billing','Shipping', 'Both Shipping and Billing'))); echo $form->input('customer_id', array('type' => 'hidden', 'value'=>$customer['Customer']['id'])); ?>
end('Submit');?>