2022-07-25 02:47:18 +02:00
|
|
|
@extends('portal.ninja2020.layout.clean')
|
|
|
|
@section('meta_title', ctrans('texts.error'))
|
|
|
|
|
|
|
|
@section('body')
|
|
|
|
|
|
|
|
<div class="flex h-screen">
|
|
|
|
<div class="m-auto md:w-1/2 lg:w-1/2">
|
|
|
|
<div class="flex flex-col items-center">
|
|
|
|
|
2024-03-27 10:08:55 +01:00
|
|
|
@if($passed_account && !$passed_account->isPaid())
|
2022-07-25 02:47:18 +02:00
|
|
|
<div>
|
|
|
|
<img src="{{ asset('images/invoiceninja-black-logo-2.png') }}"
|
|
|
|
class="border-b border-gray-100 h-18 pb-4" alt="Invoice Ninja logo">
|
|
|
|
</div>
|
2024-03-27 10:08:55 +01:00
|
|
|
@elseif(isset($passed_company) && !is_null($passed_company))
|
2022-07-25 02:47:18 +02:00
|
|
|
<div>
|
2024-03-27 10:08:55 +01:00
|
|
|
<img src="{{ $passed_company->present()->logo() }}"
|
|
|
|
class="mx-auto border-b border-gray-100 h-18 pb-4" alt="{{ $passed_company->present()->name() }} logo">
|
2022-07-25 02:47:18 +02:00
|
|
|
</div>
|
|
|
|
@endif
|
|
|
|
<h1 class="text-center text-3xl mt-10">{{ ctrans("texts.entity_removed_title") }}</h1>
|
|
|
|
<p class="text-center opacity-75 mt-10">{{ ctrans('texts.entity_removed') }}</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
@stop
|
|
|
|
|
|
|
|
@push('footer')
|
|
|
|
|
|
|
|
@endpush
|