<div class="enrolltransactions form">
	<?php echo $this->Form->create('Enrolltransaction'); ?>
	<fieldset>
		<legend><?php echo __('Add Enrolltransaction'); ?></legend>
				<?php
		echo $this->Form->input('userID');
		echo $this->Form->input('courseTitle');
		echo $this->Form->input('courseName');
		echo $this->Form->input('courseId');
		echo $this->Form->input('totalFees');
		echo $this->Form->input('foqasFee');
		echo $this->Form->input('teacherFee');
		echo $this->Form->input('foqastxnID');
		echo $this->Form->input('teachertxnID');
		echo $this->Form->input('payer_email');
		echo $this->Form->input('status');
		echo $this->Form->input('createdDate');
		echo $this->Form->input('enrollDate');
		echo $this->Form->input('transctionStatus');
	?>
	</fieldset>
	<?php echo $this->Form->end(__('Submit')); ?>
</div>

