Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
13532 anikendra 1
<div class="container">
2
	<div class="row">
3
		<div class="col-lg-3">
4
			<?php echo $this->Element('categoryactions');?>
5
		</div>
6
		<div class="col-lg-9">
7
			<?php echo $this->Form->create('Category'); ?>
8
			<fieldset>
9
				<legend><?php echo __('Admin Add Category'); ?></legend>
10
			<?php
11
				echo $this->Form->input('parent_id',array('options'=>$parent_id));
12
				// echo $this->Form->input('lft');
13
				// echo $this->Form->input('rght');
14
				echo $this->Form->input('name');
15
			?>
16
			</fieldset>
17
			<?php echo $this->Form->end(__('Submit')); ?>
18
		</div>
19
	</div>
20
</div>