Best practice to show old value when editing a form in Laravel?
Laravel function old have default parameter if no old data found in session default value will be displayed.
function old($key = null, $default = null)
Replace expression in template with the default object data.
<input name="title" value="{{old('title', $post->title)}}" />
Further Resources:
How to Hire a Great Laravel Developer