Hi, Tell me, in laravel 5.4 when using forms on the definition

{{ Form::textarea('description', isset($shippingClass->description) ? $shippingClass->description : ''), [ "class"=>"form-control editable_field textarea_input ". $viewFuncs->setFieldErrorTag($errorsList, "description", ' has-danger '), "rows"=>"5", "cols"=> 120, "placeholder"=>"Enter string description in 255 characters.", "id"=>"description" ] }} 

rendered code

 <textarea name="description" cols="50" rows="10">Some Text</textarea> 

That is, the 3rd parameter of the array did not fully fall into the source code, although judging by the description found in nete, it should.

It is treated and if so how?

And in general, is it worth using forms? Is there any further problems?

 Спасибо! 

    0