以下の手順で上手く行きました。
1
2014_10_12_000000_create_users_table.php
$table->string('name')->unique();
2
LoginController.php
public function username()
{
return 'name';
}
3
login.blade.php
<div class="form-group{{ $errors->has('name') ? ' has-error' : '' }}">
<label for="email" class="col-md-4 control-label">Name</label>
<div class="col-md-6">
<input id="name" type="name" class="form-control" name="name" value="{{ old('name') }}" required autofocus
@if ($errors->has('name'))
<span class="help-block">
<strong>{{ $errors->first('name') }}</strong>
</span>
@endif
</div>
</div>