public function editGoat($id)
 {
     return view('goat_edit', ['goat' => Goat::findOrFail($id), 'users' => User::orderBy('first_name')->get()]);
 }