/**
  * Show the form for editing the specified resource.
  *
  * @param  int  $id
  * @return Response
  */
 public function edit($id)
 {
     $event = Event::find($id);
     $eventTypes = array('' => ' ') + EventType::lists('name', 'id');
     return View::make('lanager-core::event.edit')->with('title', 'Edit Event')->with('eventTypes', $eventTypes)->with('event', $event);
 }