img src is correct but does not work in my index.php already tried different methods

my img src is correct the path is also correct i also tried the absolute and relative path but i still can’t insert the img in the index.php i also tried these method “file.jpg ” and i also tried the ” width=700 /> with the $imgloc = “filepath”; and other method but it is still not inserting the image the image address is “C:xampphtdocsRestaurantMS_CIapplicationviewsimglogo.png”

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8" />
    <meta http-equiv="X-UA-Compatible" content="IE=edge" />
    <title>Login</title>
    <!-- Tell the browser to be responsive to screen width -->
    <meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport" />
    <!-- Bootstrap 3.3.7 -->


    <link rel="stylesheet" href="<?php echo base_url('assets/bower_components/bootstrap/dist/css/bootstrap.min.css') ?>" />
    <!-- Font Awesome -->
    <link rel="stylesheet" href="<?php echo base_url('assets/bower_components/font-awesome/css/font-awesome.min.css') ?>" />
    <!-- Ionicons -->
    <link rel="stylesheet" href="<?php echo base_url('assets/bower_components/Ionicons/css/ionicons.min.css') ?>" />
    <!-- Theme style -->
    <link rel="stylesheet" href="<?php echo base_url('assets/dist/css/AdminLTE.min.css') ?>" />
    <!-- iCheck -->
    <link rel="stylesheet" href="<?php echo base_url('assets/plugins/iCheck/square/blue.css') ?>" />
    <style><?php include 'style.css'; ?></style>



    <!-- Google Font -->
    <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,600,700,300italic,400italic,600italic" />

</head>
<body class="hold-transition login-page">
    <img class="wave" src="img/wave1.png" />
    <div class="container">
        <div class="img">
            <img src="img/bg1.svg" />
   
        </div>
        <?php echo validation_errors(); ?>

        <?php if(!empty($errors)) {
                  echo $errors;
              } ?>
        <div class="login-content">
            <form action="<?php echo base_url('auth/login') ?>" method="post">
                <img src="img/logo.png" />
                <h2 class="title">Welcome Back</h2><hr /><br />
                <p>Please, provide login credentials to proceed.</p>
                <div class="input-div one">
                    <div class="i">
                        <i class="fas fa-user"></i>
                    </div>
                    <div class="div">
                        <input type="text" class="form-control" name="email" id="email" placeholder="Email" autocomplete="off" />
                    </div>
                </div>
                <div class="input-div pass">
                    <div class="i">
                        <i class="fas fa-lock"></i>
                    </div>
                    <div class="div">
                        <input type="password" class="form-control" name="password" id="password" placeholder="Password" autocomplete="off" />
                    </div>
                </div>
                <input type="submit" class="btn" value="Login" name="btnLogin" />
            </form>
        </div>
    </div>

    <!-- jQuery 3 -->

    <style>
  .icon {
    font-size: 70px;
    text-align: center;
  }
    </style>

    <script src="<?php echo base_url('assets/bower_components/jquery/dist/jquery.min.js') ?>"></script>
    <!-- Bootstrap 3.3.7 -->
    <script src="<?php echo base_url('assets/bower_components/bootstrap/dist/js/bootstrap.min.js') ?>"></script>
    <!-- iCheck -->
    <script src="<?php echo base_url('assets/plugins/iCheck/icheck.min.js') ?>"></script>
    <script>
  $(function () {
    $('input').iCheck({
      checkboxClass: 'icheckbox_square-blue',
      radioClass: 'iradio_square-blue',
      increaseArea: '20%' // optional
    });
  });
    </script>
</body>
</html>

enter image description here