<div class="profileslates form">
	<?php echo $this->Form->create('Profileslate'); ?>
	<fieldset>
		<legend><?php echo __('Edit Profileslate'); ?></legend>
				<?php
		echo $this->Form->input('id');
		echo $this->Form->input('user_id');
		echo $this->Form->input('postedId');
		echo $this->Form->input('content');
		echo $this->Form->input('type');
		echo $this->Form->input('lnk');
		echo $this->Form->input('imglink');
		echo $this->Form->input('ext');
		echo $this->Form->input('meta');
	?>
	</fieldset>
	<?php echo $this->Form->end(__('Submit')); ?>
</div>

