/**
  * Show the form for editing the specified nationalpark.
  *
  * @param  int  $id
  * @return Response
  */
 public function edit($id)
 {
     $national_park = NationalPark::find($id);
     return View::make('national_parks.edit', compact('national_park'));
 }