/**
  * Show the form for editing the specified Staff.
  *
  * @param  int  $id
  * @return Response
  */
 public function edit(StaffRepo $repo, $id)
 {
     $staff = $repo->getById($id);
     return view('admin.staff.edit-simple', compact('staff'));
 }