diff --git a/resources/views/account/accept/create.blade.php b/resources/views/account/accept/create.blade.php index d3d40a829a..23e097eded 100644 --- a/resources/views/account/accept/create.blade.php +++ b/resources/views/account/accept/create.blade.php @@ -42,17 +42,20 @@
+
+

+ {{$acceptance->checkoutable->present()->name()}} + {{ (($acceptance->checkoutable) && ($acceptance->checkoutable->serial)) ? ' - '.trans('general.serial_number').': '.$acceptance->checkoutable->serial : '' }} +

+
-
+
@if ($acceptance->checkoutable->getEula()) -
+
{!! $acceptance->checkoutable->getEula() !!}
@endif
-
-

{{$acceptance->checkoutable->present()->name()}}

-

-
+ -
-
- -
+
+ +
@if ($snipeSettings->require_accept_signature=='1') diff --git a/resources/views/account/accept/index.blade.php b/resources/views/account/accept/index.blade.php index ba83a078c9..0d36ef18ca 100755 --- a/resources/views/account/accept/index.blade.php +++ b/resources/views/account/accept/index.blade.php @@ -31,6 +31,7 @@ {{ trans('general.name')}} + {{ trans('general.serial_number')}} {{ trans('table.actions')}} @@ -39,6 +40,7 @@ @if ($acceptance->checkoutable) {{ ($acceptance->checkoutable) ? $acceptance->checkoutable->present()->name : '' }} + {{ ($acceptance->checkoutable) ? $acceptance->checkoutable->serial : '' }} {{ trans('general.accept_decline') }} @else -----