From cd4322c0c25b1aa47378345c8e4144dd9968e6c5 Mon Sep 17 00:00:00 2001 From: tjmv Date: Tue, 26 Feb 2019 17:01:09 +0100 Subject: [PATCH] Use translated name for the selected currency on the create/edit vendors page. --- resources/views/vendors/edit.blade.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/views/vendors/edit.blade.php b/resources/views/vendors/edit.blade.php index 77270b2e10bd..5f22416aa577 100644 --- a/resources/views/vendors/edit.blade.php +++ b/resources/views/vendors/edit.blade.php @@ -118,7 +118,7 @@
{!! Former::select('currency_id')->addOption('','') - ->placeholder($account->currency ? $account->currency->name : '') + ->placeholder($account->currency ? $account->currency->getTranslatedName() : '') ->fromQuery($currencies, 'name', 'id') !!} {!! Former::textarea('private_notes')->rows(6) !!}