I own a card that features an image in the background.
<div class="col-12 col-sm-8 col-md-6 col-lg-4 mt-4">
<div class="card">
<img class="card-img" style=" filter: brightness(75%);" src="{{$category->photo}}">
<div class="card-img-overlay text-white d-flex flex-column justify-content-center">
<a class="text-right"><i class="fas fa-pen"></i></a>
<h1 class="card-title text-white text-center ">{{$category->name}}</h1>
</div>
</div>
</div>
There is an icon of a pen which I aim to place at the top right corner.