Displaying the Error Messages in Laravel after being Redirected from controller

后端 未结 9 1156
情书的邮戳
情书的邮戳 2020-12-13 01:44

How can I display the validation message in the view that is being redirected in Laravel ?

Here is my function in a Controller

publi         


        
9条回答
  •  臣服心动
    2020-12-13 02:11

    This is also good way to accomplish task.

    @if($errors->any())
      {!! implode('', $errors->all('
    :message
    ')) !!} @endif

    We can format tag as per requirements.

提交回复
热议问题