<div class="profileslatecomments form">
	<?php echo $this->Form->create('Profileslatecomment'); ?>
	<fieldset>
		<legend><?php echo __('Edit Profileslatecomment'); ?></legend>
				<?php
		echo $this->Form->input('id');
		echo $this->Form->input('profileslate_id');
		echo $this->Form->input('user_id');
		echo $this->Form->input('comment');
		echo $this->Form->input('parent_id');
	?>
	</fieldset>
	<?php echo $this->Form->end(__('Submit')); ?>
</div>

