/**
  * Show the category edit form.
  *
  * @param  mixed $id
  * @return \Response
  */
 public function getView($id)
 {
     $category = $this->categories->findById($id);
     $this->view('admin.categories.edit', compact('category'));
 }