15 lines
463 B
PHP
Executable file
15 lines
463 B
PHP
Executable file
|
|
<div class="customers form">
|
|
<?php echo $form->create('Customer');?>
|
|
<fieldset>
|
|
<legend><?php __('Add or Remove Industry Tags');?></legend>
|
|
<?php
|
|
echo $form->input('id');
|
|
echo $form->input('name', array('type'=>'hidden'));
|
|
echo $form->input('abn', array('type'=>'hidden'));
|
|
echo $form->input('Industry.Industry', array('multiple'=>'checkbox', 'showParents'=> false, 'options' => $industries));
|
|
?>
|
|
</fieldset>
|
|
<?php echo $form->end('Submit');?>
|
|
|