<div class="coursecategories form">
	<?php echo $this->Form->create('Coursecategory'); ?>
	<fieldset>
		<legend><?php echo __('Edit Coursecategory'); ?></legend>
				<?php
		echo $this->Form->input('id');
		echo $this->Form->input('name');
		echo $this->Form->input('slug');
		echo $this->Form->input('seq');
		echo $this->Form->input('type');
		echo $this->Form->input('status');
	?>
	</fieldset>
	<?php echo $this->Form->end(__('Submit')); ?>
</div>

