Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
15761 manas 1
<div class="userAddresses form">
2
<?php echo $this->Form->create('UserAddress'); ?>
3
	<fieldset>
4
		<legend><?php echo __('Admin Add User Address'); ?></legend>
5
	<?php
6
		echo $this->Form->input('user_id');
7
		echo $this->Form->input('email');
8
		echo $this->Form->input('name');
9
		echo $this->Form->input('mobile_number');
10
		echo $this->Form->input('store_name');
11
		echo $this->Form->input('address');
12
		echo $this->Form->input('city');
13
		echo $this->Form->input('state');
14
		echo $this->Form->input('pincode');
15
	?>
16
	</fieldset>
17
<?php echo $this->Form->end(__('Submit')); ?>
18
</div>
19
<div class="actions">
20
	<h3><?php echo __('Actions'); ?></h3>
21
	<ul>
22
 
23
		<li><?php echo $this->Html->link(__('List User Addresses'), array('action' => 'index')); ?></li>
24
	</ul>
25
</div>