diff --git a/resources/views/users/print.blade.php b/resources/views/users/print.blade.php
new file mode 100644
index 0000000000..76b7dab57f
--- /dev/null
+++ b/resources/views/users/print.blade.php
@@ -0,0 +1,216 @@
+
+
+
+
+ Assigned to {{ $show_user->present()->fullName() }}
+
+
+
+
+@if ($snipeSettings->logo_print_assets=='1')
+ @if ($snipeSettings->brand == '3')
+
+
+ @if ($snipeSettings->logo!='')
+
+ @endif
+ {{ $snipeSettings->site_name }}
+
+ @elseif ($snipeSettings->brand == '2')
+ @if ($snipeSettings->logo!='')
+
+ @endif
+ @else
+ {{ $snipeSettings->site_name }}
+ @endif
+@endif
+
+Assigned to {{ $show_user->present()->fullName() }}
+
+@if ($assets->count() > 0)
+ @php
+ $counter = 1;
+ @endphp
+
+
+
+ {{ trans('general.assets') }} |
+
+
+
+
+ |
+ Asset Tag |
+ Name |
+ Category |
+ Model |
+ Serial |
+ Checked Out |
+
+
+
+ @foreach ($assets as $asset)
+
+
+ {{ $counter }} |
+ {{ $asset->asset_tag }} |
+ {{ $asset->name }} |
+ {{ $asset->model->category->name }} |
+ {{ $asset->model->name }} |
+ {{ $asset->serial }} |
+
+ {{ $asset->last_checkout }} |
+
+ @php
+ $counter++
+ @endphp
+ @endforeach
+
+@endif
+
+@if ($licenses->count() > 0)
+
+
+
+
+ {{ trans('general.licenses') }} |
+
+
+
+
+ |
+ Name |
+ Serial/Product Key |
+ Checked Out |
+
+
+ @php
+ $lcounter = 1;
+ @endphp
+
+ @foreach ($licenses as $license)
+
+
+ {{ $lcounter }} |
+ {{ $license->name }} |
+ {{ preg_replace ('/[a-zA-Z\d-]/', 'x', $license->serial, strlen($license->serial) -5) }} |
+ {{ $license->assetlog->first()->created_at }} |
+
+ @php
+ $lcounter++
+ @endphp
+ @endforeach
+
+@endif
+
+
+@if ($accessories->count() > 0)
+
+
+
+
+ {{ trans('general.accessories') }} |
+
+
+
+
+ |
+ Name |
+ Category |
+ Checked Out |
+
+
+ @php
+ $acounter = 1;
+ @endphp
+
+ @foreach ($accessories as $accessory)
+
+
+ {{ $acounter }} |
+ {{ ($accessory->manufacturer) ? $accessory->manufacturer->name : '' }} {{ $accessory->name }} {{ $accessory->model_number }} |
+ {{ $accessory->category->name }} |
+ {{ $accessory->assetlog->first()->created_at }} |
+
+ @php
+ $acounter++
+ @endphp
+ @endforeach
+
+@endif
+
+@if ($consumables->count() > 0)
+
+
+
+
+ {{ trans('general.consumables') }} |
+
+
+
+
+ |
+ Name |
+ Category |
+ Checked Out |
+
+
+ @php
+ $ccounter = 1;
+ @endphp
+
+ @foreach ($consumables as $consumable)
+
+
+ {{ $ccounter }} |
+ {{ ($consumable->manufacturer) ? $consumable->manufacturer->name : '' }} {{ $consumable->name }} {{ $consumable->model_number }} |
+ {{ $consumable->category->name }} |
+ {{ $consumable->assetlog->first()->created_at }} |
+
+ @php
+ $ccounter++
+ @endphp
+ @endforeach
+
+@endif
+
+
+
+
+
+
+ Signed Off By: |
+ ________________________________________________________ |
+ |
+ Date: |
+ ________________________________________________________ |
+
+
+
+
+
+