@extends('layouts/default') {{-- Page title --}} @section('title') {{ trans('admin/hardware/general.checkout') }} @parent @stop {{-- Page content --}} @section('content') @if ($asset->company) {!! $asset->company->present()->formattedNameLink !!} @endif @if ($asset->model->category) {!! $asset->model->category->present()->formattedNameLink !!} @endif @if (($asset->model) && ($asset->model->name)) {{ $asset->model->name }} @else {{ trans('admin/hardware/general.model_invalid') }} {{ trans('admin/hardware/general.model_invalid_fix') }} {{ trans('admin/hardware/general.edit') }} @endif @include ('partials.forms.checkout-selector', ['user_select' => 'true', 'asset_select' => 'true', 'location_select' => 'true']) @include ('partials.forms.edit.asset-select', ['translated_name' => trans('general.select_asset'), 'fieldname' => 'assigned_asset', 'company_id' => $asset->company_id, 'unselect' => 'true', 'exclude_id' => $asset->id, 'style' => session('checkout_to_type') == 'asset' ? '' : 'display: none;']) @include ('partials.forms.edit.location-select', ['translated_name' => trans('general.location'), 'fieldname' => 'assigned_location', 'company_id' => $asset->company_id, 'style' => session('checkout_to_type') == 'location' ? '' : 'display: none;']) require_checkinout_notes)>{{ old('note', $asset->note) }} @include('models/custom_fields_form', [ 'model' => $asset->model, 'show_custom_fields_type' => 'checkout', ]) @if ($asset->requireAcceptance() || (string) $snipeSettings->require_accept_signature === '1' || $asset->getEula() || ($snipeSettings->webhook_endpoint != '')) @if ($asset->requireAcceptance()) {{ trans('admin/categories/general.required_acceptance') }} @endif @if ((string) $snipeSettings->require_accept_signature === '1') {{ trans('admin/categories/general.required_signature') }} @endif @if ($asset->getEula()) {{ trans('admin/categories/general.required_eula') }} @endif @if (($asset->model?->category) && ($asset->model->category->checkin_email)) {{ trans('admin/categories/general.checkin_email_notification') }} @endif @if ($snipeSettings->webhook_endpoint != '') {{ trans('general.webhook_msg_note') }} @endif @if ($asset->requireAcceptance() || (string) $snipeSettings->require_accept_signature === '1') {{ trans('general.sign_in_place') }} {{ trans('general.sign_in_place_help') }} @endif @endif @stop
{{ trans('general.sign_in_place_help') }}