Roman Sadoyan

Results 9 comments of Roman Sadoyan
trafficstars

Bulma is v0.7.0 now, but in nuxtjs is v0.6.1 only. ~~Is there any workaround how to use latest bulma?~~ I found that I can to not use this module in...

:+1: @vincelwt add those buttons please

Changing this approach adds a lot of work by migrating existing e2e tests on playwright/cypress along with jest unit tests, so I want to ensure there wouldn't be a rollback...

@websmurf If I try to replace velocity-animate with CSS animation and setTimeout function, what do you think about that? I'm also not thrilled about hard-wired velocity-animate dependency. For fadeIn &...

If you are using CORS - do not forget to expose response header "Authorization" to give JS allow getting header. If you are using Laravel CORS, then In `config/cors.php` specify...

@zhekaus try this: ``` public function register(Request $request) { $request->validate( [ 'email' => 'required|string|email|max:255|unique:users', 'password' => 'required|string|min:6|confirmed', 'password_confirmation' => 'required|string|min:6', ] ); $user = new User(); $user->email = $request->email; $user->password...

@zhekaus please check if you are using the right facade inside AuthController it should be `use Tymon\JWTAuth\Facades\JWTAuth;`