Skip to content

Instantly share code, notes, and snippets.

@konnoyosuke
Created December 19, 2012 07:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save konnoyosuke/4335090 to your computer and use it in GitHub Desktop.
Save konnoyosuke/4335090 to your computer and use it in GitHub Desktop.
<div class="users index">
<h2><?php echo __('Users'); ?></h2>
<?php echo $this->Form->create(null, array('inputDefaults' => array('label' => false, 'div' => 'controls'))); ?>
<?php echo $this->Form->input('name', array('placeholder' => 'name')); ?>
<?php echo $this->Chosen->select('state', $states, array('data-placeholder' => 'Pick states...', 'multiple' => true)); ?>
<?php echo $this->Form->submit('Search'); ?>
<?php echo $this->Form->end(); ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment