public function profile_edit_store()
 {
     $app = $this->getApp();
     if ($this->srv->dataIsValid()) {
         $this->srv->updateUser($this->getUser());
         $app->flash('info', 'De wijzigingen in uw profiel zijn bewaard.');
         $app->redirect($app->urlFor('profile_show'));
     } else {
         $reg_srv = new RegistrationService($this->getEntityManager(), $this->getApp());
         $pc = $reg_srv->getPostcodes();
         $app->render('Profile\\profile_edit.html.twig', array('globals' => $this->getGlobals(), 'errors' => $this->srv->getErrors(), 'postcodes' => $pc));
     }
 }