<div class="transactions form">
	<?php echo $this->Form->create('Transaction'); ?>
	<fieldset>
		<legend><?php echo __('Edit Transaction'); ?></legend>
				<?php
		echo $this->Form->input('id');
		echo $this->Form->input('courseId');
		echo $this->Form->input('courseTitle');
		echo $this->Form->input('courseName');
		echo $this->Form->input('startDate');
		echo $this->Form->input('endDate');
		echo $this->Form->input('totalUsd');
		echo $this->Form->input('totalFee');
		echo $this->Form->input('status');
	?>
	</fieldset>
	<?php echo $this->Form->end(__('Submit')); ?>
</div>

