diff --git a/resources/views/portal/ninja2020/components/pdf-viewer.blade.php b/resources/views/portal/ninja2020/components/pdf-viewer.blade.php
new file mode 100644
index 000000000000..ec97ae97e34b
--- /dev/null
+++ b/resources/views/portal/ninja2020/components/pdf-viewer.blade.php
@@ -0,0 +1,97 @@
+@php
+ $android = stripos($_SERVER['HTTP_USER_AGENT'], 'Android');
+@endphp
+
+@push('head')
+
+
+@endpush
+
+
diff --git a/resources/views/portal/ninja2020/invoices/show.blade.php b/resources/views/portal/ninja2020/invoices/show.blade.php
index c26c3c9a71e5..aeaee1553fc5 100644
--- a/resources/views/portal/ninja2020/invoices/show.blade.php
+++ b/resources/views/portal/ninja2020/invoices/show.blade.php
@@ -2,10 +2,8 @@
@section('meta_title', ctrans('texts.view_invoice'))
@push('head')
-
-
@endpush
@@ -71,92 +69,11 @@
@endif
@include('portal.ninja2020.components.entity-documents', ['entity' => $invoice])
-
-
-
-
- {{ ctrans('texts.page') }}:
-
- {{ strtolower(ctrans('texts.of')) }}
-
-
-
-
-
-
-
-
-
-
-
-
+ @include('portal.ninja2020.components.pdf-viewer', ['entity' => $invoice])
@include('portal.ninja2020.invoices.includes.terms', ['entities' => [$invoice], 'entity_type' => ctrans('texts.invoice')])
@include('portal.ninja2020.invoices.includes.signature')
@endsection
@section('footer')
-
@endsection
diff --git a/resources/views/portal/ninja2020/quotes/show.blade.php b/resources/views/portal/ninja2020/quotes/show.blade.php
index 46ddef487cad..da929a86561c 100644
--- a/resources/views/portal/ninja2020/quotes/show.blade.php
+++ b/resources/views/portal/ninja2020/quotes/show.blade.php
@@ -28,69 +28,11 @@
@endif
@include('portal.ninja2020.components.entity-documents', ['entity' => $quote])
-
-
-
-
- {{ ctrans('texts.page') }}:
-
- {{ strtolower(ctrans('texts.of')) }}
-
-
-
-
-
-
-
-
-
-
-
-
+ @include('portal.ninja2020.components.pdf-viewer', ['entity' => $quote])
@include('portal.ninja2020.invoices.includes.terms', ['entities' => [$quote], 'entity_type' => ctrans('texts.quote')])
@include('portal.ninja2020.invoices.includes.signature')
@endsection
@section('footer')
-
@endsection