/**
  * Show the form for editing the specified concepto.
  *
  * @param  int  $id
  * @return Response
  */
 public function edit($id)
 {
     $datos = ['conceptomiembro' => ConceptoMiembro::find($id), 'conceptos' => Concepto::get(array('id', 'nombre'))];
     return View::make('back.ConceptosMiembros.edit')->with($datos);
 }