/**
  * Remove the specified resource from storage.
  *
  * @param  int  $id
  * @return Response
  */
 public function destroy($id)
 {
     User::destroy($id);
     Session::flash('message', 'Usuario Eliminado Exitosamente');
     return Redirect::route('admin.index', $id);
 }