Answers for "Laravel redirect back with variable"

PHP
4

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

laravel redirect back

return back();

return redirect()->back();

return redirect()->previous();
Posted by: Guest on August-24-2021
1

laravel blade route redirect back

{{ url()->previous() }}
Posted by: Guest on October-06-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 "Laravel redirect back with variable"

Browse Popular Code Answers by Language