Skip to content

Instantly share code, notes, and snippets.

@benglass
Created January 27, 2015 15:02
Show Gist options
  • Save benglass/79205047b55c90362c09 to your computer and use it in GitHub Desktop.
Save benglass/79205047b55c90362c09 to your computer and use it in GitHub Desktop.
<?php
// This is output <input type="email" />
$builder->add('email', 'email');
// This is output <input type="text" />
$builder->add('email', null);
// This is output <input type="tel" />
$builder->add('phone', null, array(
'attr' => array(
'type' => 'tel'
)
));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment