How to display form input box old value in Laravel

This way data will be shown inside a text field, which would be editable. I assume you want to update multiple records from single form. In that case validate form and false form after see old data in your form.

Code

<input type="text" name="title" value="{{ old('title') }}" >

Leave a Reply

Your email address will not be published. Required fields are marked *