From e8142a9067ea45f29413add8b7b1927381ba36f2 Mon Sep 17 00:00:00 2001 From: Hillel Coren Date: Tue, 11 Dec 2018 10:28:29 +0200 Subject: [PATCH] Prevent coutry autocomplete --- resources/views/clients/edit.blade.php | 2 ++ resources/views/invoices/edit.blade.php | 1 + resources/views/vendors/edit.blade.php | 1 + 3 files changed, 4 insertions(+) diff --git a/resources/views/clients/edit.blade.php b/resources/views/clients/edit.blade.php index f263b47f3..9c3a74b68 100644 --- a/resources/views/clients/edit.blade.php +++ b/resources/views/clients/edit.blade.php @@ -96,6 +96,7 @@ {!! Former::text('postal_code') ->oninput(config('ninja.google_maps_api_key') ? 'lookupPostalCode()' : '') !!} {!! Former::select('country_id')->addOption('','') + ->autocomplete('off') ->fromQuery($countries, 'name', 'id') !!}