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