/**
  * Update the specified resource in storage.
  *
  * @param  int  $id
  * @return Response
  */
 public function update($id)
 {
     $input = Input::all();
     Category::find($id)->update($input);
     return Redirect::route('category.index')->with('message', 'Category updated.');
 }