/**
  * Show the form for editing the specified resource.
  *
  * @param  int  $id
  * @return Response
  */
 public function edit($id)
 {
     $player = Player::findOrFail($id);
     $teams = Team::get();
     $positions = PlayerPosition::get();
     return view('players.edit', compact('player'))->with('teams', $teams)->with('positions', $positions);
 }