I am developing a web site using Sympfony2. In fact, I created a twig file called "tes2.html.twig". Its code is as below:
<html>
<head>
<link rel="stylesheet" type="text/css" href="{{asset('bundles/moslemtest/phptest/bootstrap.min.css')}}"/>
<script src="{{asset('bundles/moslemtest/phptest/bootstrap.min.js')}}" type="text/javascript"></script>
<script src="{{asset('bundles/moslemtest/src/jquery.min.js')}}" type="text/javascript"></script>
</head>
<body>
<div class="btn-group">
<button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown">
<input type="image" id="notifications" alt="notifications" src="{{asset('bundles/moslemtest/phptest/notifications.jpg')}}"/>
</button>
<ul class="dropdown-menu" role="menu">
<li><span>hello</span></li>
</ul>
</div>
</body>
When I see the output of that file, I see the button below on the screen:

The issue is when I click on that button no item appears despite I checked the paths out in the code above. By the way, you can have a look at the screenshot below to get sure about that:

As you can notice above, I respected the path of each source file (I mean: bootstrap.min.css, bootstrap.min.js, jquery.min.js and notifications.jpg). So my question is what is the error in my code ?