Just change your controller to the following:
public function create()
{
$items = Subject::all(['id', 'name']);
return View::make('your view', compact('items',$items));
}
And your view to:
{!! Form::Label('item', 'Item:') !!}
Hope this will solve your problem