{{ 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
Use:
{{ Form::text('txtUsername', '',array('class'=>'input', 'placeholder'=>'Username')) }}