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