old value in laravel code example
Example 1: how laravel return the old value
return redirect('form')->withInput();
Example 2: laravel old value or default
{{ old('salary_' . $employee->id, 'Default') }}
Example 3: how to see with page reuested in laravel
$request->fullUrl()