Here are two ways to flash a message on a view:
redirectTo causes http to write a new page. You must use it to get flash to work on your next page.$this->flash['notice'] = $this->t('User was successfully updated.'); $this->redirectTo(array('action' => 'show', 'id' => $this->user->getId()));
<%= flash %>flash_now: $this->flash_now['notice'] = $this->t($msg);