Файл: resources/views/shared/features/unavailable.blade.php
Строк: 23
<?php
<div class="h-100 d-flex flex-column justify-content-center align-items-center my-5">
<div class="position-relative width-32 height-32 d-flex align-items-center justify-content-center">
<div class="position-absolute top-0 right-0 bottom-0 left-0 bg-primary opacity-10 rounded-circle"></div>
@include('icons.lock', ['class' => 'text-primary fill-current width-16 height-16'])
</div>
<div>
<h5 class="mt-4 text-center">{{ __('Feature unavailable') }}</h5>
<p class="text-center text-muted">{{ __('This feature is currently unavailable.') }}</p>
</div>
</div>
?>