/**
  * Show the form for editing the specified resource.
  *
  * @param  int  $id
  * @return Response
  */
 public function edit($id)
 {
     $organization = Organization::find($id);
     $events = VolunteerEvent::where('name', '=', Auth::user()->name)->lists('name');
     return View::make('organization.edit', compact('organization', 'events'));
 }