I have a problem with Laravel collective select placeholder not working
{{ Form::select('album',$albums,$selected, ['class'=>'form-control','placeholder'=>'select album' ]) }}
But when i allow tags to true like this using select 2, it works fine,
{{ Form::select('tags[]',$tags,$tagged, ['data-input'=>'select2-tags','multiple'=>true]) }}
The second one works fine, I don't want the album to have multiple input attribute, What am i doing wrong?