public function update($id)
 {
     $this->validate($this->request);
     $response = $this->copy->updateForSlug($id, $this->request->only('value'));
     if ($response) {
         return redirect()->route('admin.copy.index')->with('success', 'Copy updated successfully.');
     }
 }