laravel 5.8.7 Page expired (419)
Laravel has built-in CSRF protection. Check out the official documentacion.
Add @csrf
to you form.
<form action="<?php echo action('TestsController@store'); ?>" method="post">
@csrf
</form>
Laravel has built-in CSRF protection. Check out the official documentacion.
Add @csrf
to you form.
<form action="<?php echo action('TestsController@store'); ?>" method="post">
@csrf
</form>