/**
  * Show the form for editing the specified resource.
  *
  * @param Author $author
  *
  * @return Response
  * @internal param int $id
  */
 public function edit(Author $author)
 {
     return view('admin.author.edit', compact('author'))->withTitle('Edit: ' . $author->name)->withMedia($author->media()->getResults());
 }