Subversion Repositories SmartDukaan

Rev

Blame | Last modification | View Log | RSS feed

<div class="container">
        <div class="row">
                <div class="col-lg-3">
                        <?php echo $this->Element('productactions');?>
                </div>
                <div class="col-lg-9">
                        <?php echo $this->Form->create('Product'); ?>
                                <fieldset>
                                        <legend><?php echo __('Admin Add Product'); ?></legend>
                                <?php
                                        echo $this->Form->input('name');
                                        echo $this->Form->input('category_id');
                                        echo $this->Form->input('tag_line');
                                ?>
                                </fieldset>
                        <?php echo $this->Form->end(__('Submit')); ?>
                </div>
        </div>
</div>