{{ 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
Been a while since this was updated but with Former for Laravel the way to do this would be:
Former::text('field')->placeholder('langfile.path.to.placeholder.text')))
The lang file would be called langfile.php with the array containing:
'Some Placeholder Text.' );