Hey !
I use Windows 8 and all works fine, no matter which OS is used.
First make sure you have Mcrypt PHP Extension.
Laravel just check if token match so you should debug in Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php in tokensMatch method :
/**
* Determine if the session and input CSRF tokens match.
*
* @param \Illuminate\Http\Request $request
* @return bool
*/
protected function tokensMatch($request)
{
$token = $request->session()->token();
$header = $request->header('X-XSRF-TOKEN');
return StringUtils::equals($token, $request->input('_token')) ||
($header && StringUtils::equals($token, $this->encrypter->decrypt($header)));
}
Hope this helps.