Stel standaard niet-null-waarden in voor de invoervariabele(n).
$contact = new Contact;
$contact->name = Input::get('name');
$contact->username = Input::get('username', '');
$contact->save();
Of, in recentere Laravel-versies:
$contact = new Contact;
$contact->name = $request->input('name');
$contact->username = $request->input('username', '');
$contact->save();