EDIT 1: I have created a new laravel project just blank one and diacritics also doesn't work, meta char is included.
Html code:
 <div class="row">
    @foreach ($TagNames as $TagName)
        <div  class="col-sm-4">
            <p>{{$TagName->TagName}}</p>
            <img style="min-width:35%; min-height:35%"; class="img-responsive"; src="images/{{$TagName->TagName}}.jpg"> 
        </div>
    @endforeach
      </div>
Everything works fine for getting images until the path name has some diacritics (romanian ones î,â,ț,ă,ș), I tried adding
<img style="min-width:35%; min-height:35%"; class="img-responsive"; src="images/Dude1withî.jpg">
and it doesn't work too.
<meta charset="utf-8">
Is added but doesn't do anything.
Examples of images stored in images folder:
Măr.png, Pîine.png, Pastă.png and so on 
How can I solve this? Any given help will be greatly appreciated.
 
     
    