<div class="contentimages form">
	<?php echo $this->Form->create('Contentimage'); ?>
	<fieldset>
		<legend><?php echo __('Add Contentimage'); ?></legend>
				<?php
		echo $this->Form->input('content_id');
		echo $this->Form->input('title');
		echo $this->Form->input('type');
		echo $this->Form->input('ext');
		echo $this->Form->input('description');
		echo $this->Form->input('order');
	?>
	</fieldset>
	<?php echo $this->Form->end(__('Submit')); ?>
</div>

