Reputation: 476
I want this Form Text Field to have a fixed size..
![{{Form::text('Name',$org!=null ? $org->name : '', array('id'=>'orgName','class' => 'form-control', 'placeholder' => 'Enter Orgnization name'),Input::old('Name'))}}][1]
It Extends throughout the page..
Upvotes: 2
Views: 2229
Reputation: 1469
You can do this by either;
form-control
and use CSS to style it'size'=>'30x5'
to the properties array (this will produce 30 cols and 5 rows)Upvotes: 2