To pre-populate form field, we can add \'value\' to form field in create.blade.php:
{{ Form::text(\'title\', \'Some default title\') }}
Is ther
When you are using the Schema builder (in Migrations or somewhere else):
Schema::create( 'posts', function($table) { $table->string('title', 30)->default('New post'); } );