I did not find how to use a clause (OR, AND) in view with @can, for checking multiple abilities ...
I tried:
@can([\'permission1\', \'permission2\']) @c
You can use the Gate facade:
@if(Gate::check('permission1') || Gate::check('permission2')) @endif