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('categoryactions');?>
                </div>
                <div class="col-lg-9">
                        <?php echo $this->Form->create('Category'); ?>
                                <fieldset>
                                        <legend><?php echo __('Admin Edit Category'); ?></legend>
                                <?php
                                        echo $this->Form->input('id');
                                        // echo $this->Form->input('parent_id');
                                        // echo $this->Form->input('lft');
                                        // echo $this->Form->input('rght');
                                        echo $this->Form->input('name');
                                ?>
                                </fieldset>
                        <?php echo $this->Form->end(__('Submit')); ?>
                </div>
        </div>
</div>