@if (session('success'))

{{ session('success') }}

@endif @if (session('error'))

{{ session('error') }}

@endif @if (session('warning'))

{{ session('warning') }}

@endif @auth @php $industryBannerOrg = app(\App\Services\Qms\OrganizationResolver::class)->resolveForUser(auth()->user()); $industryNeedsReinstall = $industryBannerOrg && \App\Services\Qms\Industry\IndustryPackageInstaller::needsReinstall($industryBannerOrg); $industryCanManage = $industryNeedsReinstall && app(\App\Services\Qms\QmsPermissions::class)->can( app(\App\Services\Qms\OrganizationResolver::class)->memberFor(auth()->user(), $industryBannerOrg), 'settings.manage' ); $industrySelectedLabel = $industryNeedsReinstall ? (app(\App\Services\Qms\Industry\IndustryPackageRegistry::class) ->get((string) data_get($industryBannerOrg->settings, 'industry')) ?->label() ?? data_get($industryBannerOrg->settings, 'industry')) : null; @endphp @if ($industryCanManage && ! request()->routeIs('qms.settings.*'))

Reinstall industry package required

Industry is set to {{ $industrySelectedLabel }}, but the installed queues still match the previous template. Reinstall to clear old queues and apply the new package.

Open settings
@endif @endauth @if ($errors->any())

Please fix the following:

@endif