/**
  * Show the form for editing the specified resource.
  *
  * @param Tournament $tournament
  * @return \Illuminate\Http\Response
  */
 public function edit(Tournament $tournament)
 {
     $places = Place::lists('name', 'id');
     //        dd($tournaments);
     return view('tournaments.edit', compact('tournament', 'places'));
 }