Hi Abu,
I am trying to import on my laravel App, however get message page expired after clicking the Step 2.
Before i updated the 3 files steps on import folder
Thanks
1 Answers
Looks like csrf_token is not refreshed or posted while import.
Verify if you need to add the following code on each page (step1.php and step2.php) inside the form tag.
<input type="hidden" name="_token" value="<?php echo csrf_token() ?>">
Your Answer