Subversion Repositories SmartDukaan

Rev

Rev 13579 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 13579 Rev 13758
Line 1... Line 1...
1
<div class="brands form">
1
<div class="container">
-
 
2
	<div class="row">
-
 
3
		<div class="col-lg-3">
-
 
4
			<?php echo $this->Element('adminactions');?>
-
 
5
		</div>
-
 
6
		<div class="col-lg-9">
2
<?php echo $this->Form->create('Brand'); ?>
7
			<?php echo $this->Form->create('Brand'); ?>
3
	<fieldset>
8
				<fieldset>
4
		<legend><?php echo __('Admin Add Brand'); ?></legend>
9
					<legend><?php echo __('Add Brand'); ?></legend>
5
	<?php
10
				<?php
6
		echo $this->Form->input('name');
11
					echo $this->Form->input('name');
-
 
12
					echo $this->Form->input('category_id');
-
 
13
					echo $this->Form->input('displayed_in_preference_page');
7
	?>
14
				?>
8
	</fieldset>
15
				</fieldset>
9
<?php echo $this->Form->end(__('Submit')); ?>
16
			<?php echo $this->Form->end(__('Submit')); ?>
10
</div>
17
			</div>
11
<div class="actions">
-
 
12
	<h3><?php echo __('Actions'); ?></h3>
-
 
13
	<ul>
18
		</div>
14
 
-
 
15
		<li><?php echo $this->Html->link(__('List Brands'), array('action' => 'index')); ?></li>
-
 
16
	</ul>
19
	</div>
17
</div>
20
</div>