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