public function create()
 {
     $attribute = new Attribute();
     $attribute->name = Input::get('name');
     $attribute->save();
     Session::flash('message', 'Attribute created.');
     return Redirect::back();
 }