I'm developing a web page with laravel, the problem I have is that I used a template that already had everything ready, but of course I wanted to replace the images I brought with some custom ones, but when I make the browser small or "pick up" let's say menus or so, the images have a fixed size and do not adapt with the browser, it is a bit frustrating, I put the code of the login, which brings the photo by default and with mine does not adapt.
Thank you in advance
<!DOCTYPE html>
<title>Login Page </title>
<link rel="apple-touch-icon" sizes="60x60" href="images/ico/apple-icon-60.png">
<link rel="apple-touch-icon" sizes="76x76" href="images/ico/apple-icon-76.png">
<link rel="apple-touch-icon" sizes="120x120" href="images/ico/apple-icon-120.png">
<link rel="apple-touch-icon" sizes="152x152" href="images/ico/apple-icon-152.png">
<link rel="shortcut icon" type="image/x-icon" href="images/ico/favicon.ico">
<link rel="shortcut icon" type="image/png" href="images/ico/favicon-32.png">
<!-- BEGIN VENDOR CSS -->
<link rel="stylesheet" type="text/css" href="css/bootstrap.css">
<!-- font icons -->
<link rel="stylesheet" type="text/css" href="fonts/icomoon.css">
<link rel="stylesheet" type="text/css" href="fonts/flag-icon-css/css/flag-icon.min.css">
<link rel="stylesheet" type="text/css" href="vendors/css/sliders/slick/slick.css">
<link rel="stylesheet" type="text/css" href="vendors/css/extensions/pace.css">
<link rel="stylesheet" type="text/css" href="vendors/css/forms/icheck/icheck.css">
<link rel="stylesheet" type="text/css" href="vendors/css/forms/icheck/custom.css">
<!-- END VENDOR CSS -->
<!-- BEGIN ROBUST CSS -->
<link rel="stylesheet" type="text/css" href="css/bootstrap-extended.css">
<link rel="stylesheet" type="text/css" href="css/app.css">
<link rel="stylesheet" type="text/css" href="css/colors.css">
<!-- END ROBUST CSS -->
<!-- BEGIN Page Level CSS -->
<link rel="stylesheet" type="text/css" href="css/core/menu/menu-types/horizontal-menu.css">
<link rel="stylesheet" type="text/css" href="css/core/menu/menu-types/vertical-overlay-menu.css">
<link rel="stylesheet" type="text/css" href="css/pages/login-register.css">
<!-- END Page Level CSS -->
<!-- BEGIN Custom CSS -->
<link rel="stylesheet" type="text/css" href="css/app.css">
<!-- END Custom CSS -->
Login
I know it's a very silly question, but it makes me pretty frustrated.