diff --git a/app/Services/LdapAd.php b/app/Services/LdapAd.php index 925927d1f..4bfef3d3e 100644 --- a/app/Services/LdapAd.php +++ b/app/Services/LdapAd.php @@ -135,7 +135,7 @@ class LdapAd extends LdapAdConfiguration $bind_as_user = true; } - if ($this->ldap->auth()->attempt($login_username, $password, $bind_as_user) === false) { + if (($this->ldap) && ($this->ldap->auth()->attempt($login_username, $password, $bind_as_user) === false)) { throw new Exception('Unable to validate user credentials!'); } diff --git a/resources/views/hardware/labels.blade.php b/resources/views/hardware/labels.blade.php index 52c06aad9..beef71847 100644 --- a/resources/views/hardware/labels.blade.php +++ b/resources/views/hardware/labels.blade.php @@ -56,6 +56,13 @@ $qr_size = ($settings->alt_barcode_enabled=='1') && ($settings->alt_barcode!='') padding-top: .11in; width: 100%; } + div.label-logo { + float: right; + display: inline-block; + } + img.label-logo { + height: 0.5in; + } .qr_text { width: {{ $settings->labels_width }}in; height: {{ $settings->labels_height }}in; @@ -111,6 +118,11 @@ $qr_size = ($settings->alt_barcode_enabled=='1') && ($settings->alt_barcode!='') @endif