<form method="post" action="{{ path('portfolio_media_delete', {'id': portfolio_media.id}) }}" onsubmit="return confirm('Are you sure you want to delete this item?');">
    <input type="hidden" name="_method" value="DELETE">
    <input type="hidden" name="_token" value="{{ csrf_token('delete' ~ portfolio_media.id) }}">
    <button class="btn btn-outline-danger">Delete</button>
</form>