Subversion Repositories SmartDukaan

Rev

Rev 13532 | Details | Compare with Previous | 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('storeactions');?>
5
		</div>
6
		<div class="col-lg-9">
7
			<?php echo $this->Form->create('Store'); ?>
8
				<fieldset>
9
					<legend><?php echo __('Edit Store'); ?></legend>
10
				<?php
11
					echo $this->Form->input('id');
12
					echo $this->Form->input('name');
13558 anikendra 13
					echo $this->Form->input('domain');
14
					echo $this->Form->input('status');
13532 anikendra 15
					echo $this->Form->input('affiliate_id',array('type'=>'text'));
13558 anikendra 16
					echo $this->Form->input('affid_param');
17
					echo $this->Form->input('sub_tag_param');
18
					echo $this->Form->input('cashback_status',array('type'=>'select','options'=>$cashback_statuses));
13532 anikendra 19
				?>
20
				</fieldset>
21
			<?php echo $this->Form->end(__('Submit')); ?>
22
			</div>
23
		</div>
24
	</div>
25
</div>