27 lines
		
	
	
		
			881 B
		
	
	
	
		
			PHP
		
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			881 B
		
	
	
	
		
			PHP
		
	
	
	
<?php
 | 
						|
/**
 | 
						|
 * @var \App\View\AppView $this
 | 
						|
 * @var \Cake\Datasource\EntityInterface $product
 | 
						|
 * @var \Cake\Collection\CollectionInterface|string[] $productCategories
 | 
						|
 */
 | 
						|
?>
 | 
						|
<div class="row">
 | 
						|
    <aside class="column">
 | 
						|
        <div class="side-nav">
 | 
						|
            <h4 class="heading"><?= __('Actions') ?></h4>
 | 
						|
            <?= $this->Html->link(__('List Products'), ['action' => 'index'], ['class' => 'side-nav-item']) ?>
 | 
						|
        </div>
 | 
						|
    </aside>
 | 
						|
    <div class="column column-80">
 | 
						|
        <div class="products form content">
 | 
						|
            <?= $this->Form->create($product, ['id' => 'main-form']) ?>
 | 
						|
            <fieldset>
 | 
						|
                <legend><?= __('Add Product') ?></legend>
 | 
						|
                <?= $this->element('Products/form'); ?>
 | 
						|
            </fieldset>
 | 
						|
            <?= $this->Form->button(__('Submit')) ?>
 | 
						|
            <?= $this->Form->end() ?>
 | 
						|
        </div>
 | 
						|
    </div>
 | 
						|
</div>
 |