To pre-populate form field, we can add \'value\' to form field in create.blade.php:
{{ Form::text(\'title\', \'Some default title\') }}
Is ther
if you mean placeholder you can do this
{{ Form::password('password', array('placeholder' => 'password'))}}