Using Laravel Form class to add the 'disabled' attribute
Using Laravel 4's Form class, we can create a list using {{ @Form::select('colors', Colors::all()), $color }} Question: How can we add the attribute disabled using Blade without having to rewrite the clean Blade syntax into the usual ugly form? JustinHo Just add array('disabled') in the end like: {{ Form::select('colors', Colors::all(), $color, array('disabled')) }} This should do the work. {{ @Form::select('colors', Colors::all()), array( 'disabled' => 'disabled', 'class' => 'myclass' ) }} Though already answered, IMO both answers weren't neutral enough, so to avoid duplicates the arguments