laravel redirect back with errors and input

100

Route::post('user/profile', function () {
    // Update the user's profile...

    return redirect('dashboard')->with('status', 'Profile updated!');
});
return redirect()->back()->withInput();

Comments

Submit
0 Comments