/** * Show the form for editing the specified anggota. * * @param int $id * @return Response */ public function edit($id) { $anggota = Anggota::find($id); return View::make('anggotas.edit', compact('anggota'))->withTitle('Edit Profil Anggota'); }