在register.blade.php中建表单。照Jelly的做会报错:htmlentities() expects parameter 1 to be string, array given。于是给text()加上参数null。请问为什么Jelly的没有报错呢??加不加null有什么区别呢?
<div class="form-group">
{!! Form::label('password','Password:') !!}
{!! Form::text('password',['class'=>'form-control']) !!}
</div>