/**
  * Show the form for editing the specified resource.
  *
  * @param  int  $id
  * @return \Illuminate\Http\Response
  */
 public function edit($id)
 {
     $roadshow = Roadshow::find($id);
     $social = unserialize($roadshow->social);
     return view('admin.roadshow.edit', compact('roadshow', 'social'));
 }