@extends('layouts/default') {{-- Page title --}} @section('title') {{trans('general.accept', ['asset' => $acceptance->checkoutable->display_name])}} @parent @stop {{-- Page content --}} @section('content')

{{ $acceptance->checkoutable->display_name }} @if ($acceptance->qty > 1) ×{{ $acceptance->qty }} @endif
{{ (($acceptance->checkoutable) && ($acceptance->checkoutable->serial)) ? trans('general.serial_number').': '.$acceptance->checkoutable->serial : '' }}

@if ($acceptance->checkoutable->getEula())
{!! str_replace('

', '

', $acceptance->checkoutable->getEula()) !!}

@endif


@if ($snipeSettings->require_accept_signature=='1')

{{trans('general.sign_tos')}}

@endif @if (auth()->user()->email!='') @endif
@stop @section('moar_scripts') @stop