UltimatePOS

  1. Home
  2. Docs
  3. UltimatePOS
  4. Others
  5. Adding Favicon, Login & Registration page background image

Adding Favicon, Login & Registration page background image

Adding Favicon

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.

Changing Login & Registration page background image

Replace the image public/img/home-bg.jpg

Keep the new image name same as “home-bg.jpg”

How can I display the login page instead of the landing page? (Making login page as the landing page)

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:

  1. Open the routes/web.php file in your code editor.
  2. Search for the route that specifies the view for the welcome blade file.
  3. Replace the view name with the name of the login blade file.
  4. Save the changes to the routes/web.php file.

For more information on using blade templates in Laravel, refer to the Laravel documentation at https://laravel.com/docs/10.x/blade.

If you need to pass data to the view, you can refer to this guide at https://www.geeksforgeeks.org/different-ways-for-passing-data-to-view-in-laravel/.

For more information on file paths in UltimatePOS, refer to this documentation at https://ultimatefosters.com/docs/ultimatepos/technical/different-files-path/.

Was this article helpful to you? Yes 1 No