Website Portfolio with Laravel and Vue.js
Welcome to our website portfolio, where we showcase our projects built with Laravel and Vue.js. We specialize in creating dynamic and interactive web applications that are both functional and visually appealing.
Login and Register with Sanctum Auth and Vue.js 3
One of the key features of our portfolio is the implementation of user authentication using Laravel Sanctum and Vue.js 3. With this setup, we ensure that our web applications are secure and only accessible by authorized users.
Login
Users can easily log in to their accounts using their credentials. We have designed a user-friendly interface that allows for a seamless login experience.
Register
New users can sign up for an account and create a profile that allows them to access our web applications. We have incorporated a smooth registration process that guides users through creating their accounts.
Projects
Take a look at some of the projects we have developed using Laravel and Vue.js. Our portfolio showcases a diverse range of web applications, including e-commerce platforms, social networking sites, and content management systems. Each project demonstrates our expertise in leveraging the power of Laravel and Vue.js to create stunning and functional web applications.
when I make a request via post man on register endpoint, it returns a 500 response(Internal Server Error)
Anyone facing this error:
Syntax error or access violation: 1071 Specified key was too long; max key length is 1000 bytes.
While running the migration, you need to add this line in AppServiceProvider in boot function:
Schema::defaultStringLength(191);
Don't forget to import the namespace for Schema
give me the css for login page