/**
  * Show the form for editing the specified resource.
  *
  * @param  int  $id
  * @return Response
  */
 public function edit($id)
 {
     $subirwod = SubirWod::findOrfail($id);
     return view('admin.subirwod.edit', ['subirwod' => $subirwod]);
 }