/**
  * Show the form for editing the specified resource.
  *
  * @param  int $id
  * @return \Illuminate\Http\Response
  */
 public function edit($id)
 {
     $work_experience = $this->repository->skipPresenter(TRUE)->find($id);
     $companies = $this->companyRepository->lists('name', 'id');
     return view('admin.work_experience.edit', compact('work_experience', 'companies'));
 }