<div class="paymentreports form">
	<?php echo $this->Form->create('Paymentreport'); ?>
	<fieldset>
		<legend><?php echo __('Edit Paymentreport'); ?></legend>
				<?php
		echo $this->Form->input('id');
		echo $this->Form->input('user_id');
		echo $this->Form->input('course_id');
		echo $this->Form->input('txnid');
		echo $this->Form->input('payeremail');
		echo $this->Form->input('amount');
		echo $this->Form->input('currency');
		echo $this->Form->input('country');
		echo $this->Form->input('batchID');
		echo $this->Form->input('paymentDate');
	?>
	</fieldset>
	<?php echo $this->Form->end(__('Submit')); ?>
</div>

