<div class="walllikes form">
	<?php echo $this->Form->create('Walllike'); ?>
	<fieldset>
		<legend><?php echo __('Edit Walllike'); ?></legend>
				<?php
		echo $this->Form->input('id');
		echo $this->Form->input('wall_id');
		echo $this->Form->input('user_id');
		echo $this->Form->input('status');
	?>
	</fieldset>
	<?php echo $this->Form->end(__('Submit')); ?>
</div>

