refactor: replace custom CRM with Monica fork
Some checks failed
Build & Push Monica Image to Gitea Registry / build-and-push (push) Failing after 9s

This commit is contained in:
Kroonk
2026-05-22 16:19:55 +02:00
parent 38cc4c09ca
commit a213a1dba0
2215 changed files with 242567 additions and 6015 deletions

View File

@@ -0,0 +1,27 @@
@extends('marketing.skeleton')
@section('content')
<body class="marketing register">
<div class="container">
<div class="row">
<div class="col-12 col-md-6 offset-md-3 offset-md-3-right">
<div class="alert alert-danger">
<h3><em class="fa fa-ban"></em> @lang('auth.not_authorized')</h3>
@lang('settings.personalisation_paid_upgrade', ['url' => route('settings.subscriptions.index')])
@if(isset($exception) && $exception->getMessage())
<p class="message">{{ $exception->getMessage() }}</p>
@endif
<p><a href="">{{ trans('auth.back_homepage') }}</a></p>
</div>
</div>
</div>
</div>
</body>
@endsection