/**
 * Show the form for editing the specified resource.
 *
 * @param  int  $id
 * @return Response
 */
 public function edit($id)
 {
     $user = Auth::user();
     $club = $user->clubs()->FirstOrFail();
     $types = EventType::all()->lists('name', 'id');
     $event = Evento::find($id);
     $title = 'League Together - Event | ' . $event->name;
     return View::make('app.club.event.edit')->with('page_title', $title)->with('club', $club)->with('types', $types)->with('event', $event)->withUser($user);
 }