/**
  * Show the form for editing the specified resource.
  *
  * @param  int  $id
  * @return Response
  */
 public function edit($id)
 {
     $model = $this->model->findOrFail($id);
     $categories = new Category();
     $tags = new Tag();
     return view('LaravelAdminBlog::.edit')->with('categories', $categories->forSelect())->with('tags', $tags->forSelect())->with('article', $model)->with('activeMenu', 'sidebar.Blog.List');
 }