To change the Favicon.ico image go to /public folder and replace the favicon.ico file present there.
Clear cache of your browser and it will start to show the new image you added.
Replace the image pos\public\img\logo-small.png
Keep the new image name as “logo-small.png”
How to change the blue background in the login page?
To change the blue background in the login page, check the css file and change the line as mentioned below.
Step 1: Login to your server and open the codebase files for UltimatePOS.
Step 2: Go to pos\resources\views\layouts\partials\extracss_auth.blade.php and edit line no 15. Add the required color code here.
You can change the default blue background in the Login Page, Registration Page, and Pricing Page by updating the style file.
Step 1: Go to pos\resources\views\layouts\partials\extracss_auth.blade.php
Step 2: Inside this file, you will find the code for both background image and background color.
Step 3:
To apply your choice:
To change the application name in the landing page, follow the steps given below
Step 1: Open .env file present in your codebase.
Step 2: Search for APP_NAME.
Step 3: Change the value for the APP_NAME =”examplePOS” as required.
If you want to redirect the landing page of your POS system to login page page, you can modify the route in the pos/routes/web.php file to call the login blade instead of the welcome blade.
This will display the login page instead of the default welcome page when the POS system is accessed.
To change the route and call the login blade, follow these steps:
For more information on using blade templates in Laravel, refer to the Laravel documentation at
If you need to pass data to the view, you can refer to this guide at
For more information on file paths in UltimatePOS, refer to this documentation at