Reputation: 38422
How can i achieve the following using cakephp form helper
<input type="text" required>
Upvotes: 2
Views: 708
Reputation: 522597
$this->Form->input('foo', array('required' => 'required'));
This will set the required
attribute in longhand required="required"
format, but will have the same effect.
Upvotes: 6