Subversion Repositories SmartDukaan

Rev

Blame | Last modification | View Log | RSS feed

<div class="userAddresses form">
<?php echo $this->Form->create('UserAddress'); ?>
        <fieldset>
                <legend><?php echo __('Edit User Address'); ?></legend>
        <?php
                echo $this->Form->input('id');
                echo $this->Form->input('user_id');
                echo $this->Form->input('email');
                echo $this->Form->input('name');
                echo $this->Form->input('mobile_number');
                echo $this->Form->input('store_name');
                echo $this->Form->input('address');
                echo $this->Form->input('city');
                echo $this->Form->input('state');
                echo $this->Form->input('pincode');
        ?>
        </fieldset>
<?php echo $this->Form->end(__('Submit')); ?>
</div>
<div class="actions">
        <h3><?php echo __('Actions'); ?></h3>
        <ul>

                <li><?php echo $this->Form->postLink(__('Delete'), array('action' => 'delete', $this->Form->value('UserAddress.id')), null, __('Are you sure you want to delete # %s?', $this->Form->value('UserAddress.id'))); ?></li>
                <li><?php echo $this->Html->link(__('List User Addresses'), array('action' => 'index')); ?></li>
        </ul>
</div>