{{ Form::text(\'username\', Input::old(\'username\')) }}
This is my code, I want to add Username as placeholder in the text box. I already use boot
{{ Form::text('username', Input::old('username'), array('placeholder'=>'Username')) }}
This works for Laravel 4!!