/**
  * Show the form for editing the specified resource.
  *
  * @param  int  $id
  * @return \Illuminate\Http\Response
  */
 public function edit($id, ApiCategoryInterface $api_category)
 {
     $category = $api_category->getCategory($id);
     return view('categories.form', ['category' => $category, 'title' => 'Create Category']);
 }