Skip to content

Instantly share code, notes, and snippets.

@Casperhr
Created September 13, 2016 11:26
Show Gist options
  • Select an option

  • Save Casperhr/8d3f99024ee8267221cd8984e32ff1bb to your computer and use it in GitHub Desktop.

Select an option

Save Casperhr/8d3f99024ee8267221cd8984e32ff1bb to your computer and use it in GitHub Desktop.
<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