/**
  * Show the form for editing the specified resource.
  *
  * @param  int  $id
  * @return \Illuminate\Http\Response
  */
 public function edit(PossiblePhoto $possible_photos)
 {
     //
     $images_list = Image::lists('id', 'id');
     return view('possible_photos.edit', compact('images_list', 'possible_photos'));
 }