/**
  * Show the form for editing the specified resource.
  * GET /admcontinentes/{id}/edit
  *
  * @param  int  $id
  * @return Response
  */
 public function edit($id)
 {
     $continente = Continente::find($id);
     return View::make('admin.continente.edit', compact('continente'));
 }