


<div class="friends form">
	<?php echo $this->Form->create('Friend'); ?>
	<fieldset>
		<legend><?php echo __('Add Friend'); ?></legend>
				<?php
		echo $this->Form->input('profile_id');
		echo $this->Form->input('friendId');
		echo $this->Form->input('status');
	?>
	</fieldset>
	<?php echo $this->Form->end(__('Submit')); ?>
</div>

