Search code examples
phpformslaravelinputmaxlength

Laravel form inputs - how to set maxlength


Maximal length of HTML inputs can be set by: <input type="text" name="" maxlength="10"> Is there a way how to set maxlength of form input when creating inputs in Laravel way?

{{ Form::text('name', null, array('placeholder' => '')) }}

Solution

  • {{ Form::text('name', null, array('placeholder' => '','maxlength' => 10 )) }}
    

    Works with the Chrome Version 39.0.2171.95 (64-bit)