Answers for "redirect back with some data laravel 8"

C#
5

laravel redirect back

return Redirect::back()->withErrors(['msg', 'The Message']);

and inside your view call this

@if($errors->any())
<h4>{{$errors->first()}}</h4>
@endif
Posted by: Guest on August-20-2020
0

redirect back with input laravel in request

// class ExampleRequest 
public function response(array $errors): RedirectResponse
{
  return Redirect::back()->withErrors($errors)->withInput();
}
Posted by: Guest on October-19-2021

Code answers related to "redirect back with some data laravel 8"

C# Answers by Framework

Browse Popular Code Answers by Language