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