# Adding Favicon, Login & Registration page background image

## <span id="bkmrk-adding-favicon-1">Adding Favicon</span>

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.

## <span id="bkmrk-changing-logo-in-log-1">Changing Logo in Login &amp; Registration page</span>

Replace the image **pos\\public\\img\\logo-small.png**

Keep the new image name as “**logo-small.png**”

## <span id="bkmrk-changing-background--1">Changing Background Colour in Login Page</span>

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.

## <span id="bkmrk-setting-background-i-1">Setting Background Image in Login/Registration and Pricing Page</span>

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:

- **For Background Image** → Un-comment the line of code for the background image.
- **For Background Color** → Un-comment the line of code for the background color.

## <span id="bkmrk-changing-application-1">Changing Application Name in Landing page</span>

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.

## <span id="bkmrk-how-can-i-display-th-1">How can I display the login page instead of the landing page? (Making login page as the landing page)</span>

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](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/](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/](https://ultimatefosters.com/docs/ultimatepos/technical/different-files-path/).