Illuminate\Database\QueryException : SQLSTATE[42000]: Syntax error or access violation: 1064 You have an error in your SQL syntax; check the manual that cor
responds to your MariaDB server version for the right syntax to use near 'unsigned not null, telephone varchar(191) not null, email varchar(191) not n' at l
ine 1 (SQL: create table users (id bigint unsigned not null auto_increment primary key, first_name varchar(191) not null, last_name varchar(191) not nul
l, mobile varchar(191) unsigned not null, telephone varchar(191) not null, email varchar(191) not null, email_verified_at timestamp null, password var
char(191) not null, image varchar(191) null, remember_token varchar(100) null, created_at timestamp null, updated_at timestamp null) default character s
et utf8mb4 collate 'utf8mb4_unicode_ci')
Pls double check your mobile column its string and unsigned. Thats where it throws error unsigned not null. I believe in MySQL only integers can be unsigned.