Created
September 13, 2016 11:26
-
-
Save Casperhr/8d3f99024ee8267221cd8984e32ff1bb to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <label><?=__('seo_title')?></label> | |
| <div class="input-group"> | |
| <span class="input-group-addon"> | |
| <i class="fa fa-font"></i> | |
| </span> | |
| <?php | |
| echo $this->Form->input( | |
| 'Project.seo_title', | |
| array( | |
| 'div' => array( | |
| 'class' => 'form-group' | |
| ), | |
| 'class' => 'form-control', | |
| 'div' => false, | |
| 'label' => false, | |
| 'placeholder' => __('enter') . ' ' . __('seo_title'), | |
| 'value' => $item['Project']['seo_title'] | |
| ) | |
| ); | |
| ?> | |
| </div> | |
| <label><?=__('seo_description')?></label> | |
| <div class="input-group"> | |
| <span class="input-group-addon"> | |
| <i class="fa fa-font"></i> | |
| </span> | |
| <?php | |
| echo $this->Form->input( | |
| 'Project.seo_description', | |
| array( | |
| 'div' => array( | |
| 'class' => 'form-group' | |
| ), | |
| 'class' => 'form-control', | |
| 'div' => false, | |
| 'label' => false, | |
| 'placeholder' => __('enter') . ' ' . __('seo_description'), | |
| 'value' => $item['Project']['seo_description'] | |
| ) | |
| ); | |
| ?> | |
| </div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment