It needs to be disabled in app\Http\Middleware\VerifyCsrfToken.php like following snippet
protected $except = [ // '/admin/gift_photos/upload' ];
Another thing, to exclude all routes under main route ex. users
protected $except = ['users/*'];
It needs to be disabled in app\Http\Middleware\VerifyCsrfToken.php like following snippet
protected $except = [ // '/admin/gift_photos/upload' ];
Another thing, to exclude all routes under main route ex. users
protected $except = ['users/*'];