@extends('layouts/default') {{-- Page title --}} @section('title') {{ trans('admin/licenses/general.checkout') }} @parent @stop @section('header_right') {{ trans('general.back') }} @stop {{-- Page content --}} @section('content') {{ $license->name }} @if ($license->company) {!! $license->company->present()->formattedNameLink !!} @endif @if ($license->category) {!! $license->category->present()->formattedNameLink !!} @endif @if ($license->serial) @can('viewKeys', $license) {!! nl2br(e($license->serial)) !!} @endcan @endif @include ('partials.forms.checkout-selector', ['user_select' => 'true', 'asset_select' => 'true', 'location_select' => 'false']) @include ('partials.forms.edit.asset-select', ['translated_name' => trans('general.select_asset'), 'fieldname' => 'assigned_asset', 'company_id' => $license->company_id, 'style' => session('checkout_to_type') == 'asset' ? '' : 'display: none;']) {{ old('note') }} @if ($license->requireAcceptance() || (string) $snipeSettings->require_accept_signature === '1' || $license->getEula() || ($snipeSettings->webhook_endpoint != '')) @if ($license->requireAcceptance()) {{ trans('admin/categories/general.required_acceptance') }} @endif @if ((string) $snipeSettings->require_accept_signature === '1') {{ trans('admin/categories/general.required_signature') }} @endif @if ($license->getEula()) {{ trans('admin/categories/general.required_eula') }} @endif @if (($license->category) && ($license->category->checkin_email)) {{ trans('admin/categories/general.checkin_email_notification') }} @endif @if ($snipeSettings->webhook_endpoint != '') {{ trans('general.webhook_msg_note') }} @endif @if ($license->requireAcceptance() || (string) $snipeSettings->require_accept_signature === '1') {{ trans('general.sign_in_place') }} {{ trans('general.sign_in_place_help') }} @endif @endif @stop
{!! nl2br(e($license->serial)) !!}
{{ trans('general.sign_in_place_help') }}