<div class="profiles form userForm">
	<?php echo $this->Form->create('Profile'); ?>
	<fieldset>
		<legend><?php echo __('Add Profile'); ?></legend>
				<?php
		echo $this->Form->input('user_id');
		echo $this->Form->input('fname');
		echo $this->Form->input('lastname');
		echo $this->Form->input('organization');
		echo $this->Form->input('occupation');
		echo $this->Form->input('phone');
		echo $this->Form->input('aboutme');
	?>
	</fieldset>
	<?php echo $this->Form->end(__('Submit')); ?>
</div>

