/**
  * Show the form for creating a new resource.
  *
  * @return Response
  */
 public function create($post_id, $type = 0)
 {
     if (!Comment::canBuild($post_id, $type)) {
         return;
     }
     return view('admin.comments.create')->with('post_id', $post_id)->with('type', $type);
 }