link('customer_edit'); ?>
create('Customer');?>
input('id'); echo $form->input('name'); echo $form->input('abn'); //echo $this->element('payment_terms_box'); ?>
input('payment_terms'); echo $form->input('discount_pricing_policies', array('label'=>'Discount and Pricing Policies')); echo $form->input('notes'); echo $form->input('url', array('label'=>'Website URL')); echo '
'; echo $form->label('Customer.customer_category_id', 'Customer Category'); echo $form->select('customer_category_id', $customer_categories, $this->data['Customer']['customer_category_id'], array('label'=>'Customer Category'), false); echo '
'; echo $form->input('Industry.Industry', array('multiple'=>'checkbox', 'showParents'=> false, 'options' => $industries)); ?>
end('Submit');?>