public function edit($id)
 {
     $client = $this->repository->with('user')->findWhere(['id' => $id])->first();
     return view('admin.clients.form', compact('client'));
 }