Show old value while editing the form in Laravel

Created at 05-Jul-2022 , By samar

Show old value while editing the form in Laravel

Hello everyone, in this post we will look at how to solve "Show old value while editing the form in Laravel" in programming.

I want to show the old value in input field of html form in case if validation is fails while editing the form in Laravel. Display the old value in case if I have edited the form data before submit else display the data from database table.
value="{{old('name')}}
  • Display old value with database value while editing the form

    --PATH resources\views\<home>.blade.php
    <input type="text" name="name" value="{{old('name', $data->name)}}"/>
    
    This code snippet will display the old value which you have passed while editing the form and if you did not pass any value then it will display the data from the database which you get through the controller.

Back to code snippet queries related laravel

If you like what you are reading, please consider buying us a coffee ( or 2 ) as a token of appreciation.

Buy Me A Coffee

Don't forget to share this article! Help us spread the word by clicking the share button below.

We appreciate your support and are committed to providing you valuable and informative content.

We are thankful for your never ending support.