diff --git a/database/seeds/CurrenciesSeeder.php b/database/seeds/CurrenciesSeeder.php
index e175a357c9bf..f291084989ec 100644
--- a/database/seeds/CurrenciesSeeder.php
+++ b/database/seeds/CurrenciesSeeder.php
@@ -78,6 +78,7 @@ class CurrenciesSeeder extends Seeder
['name' => 'Myanmar Kyat', 'code' => 'MMK', 'symbol' => 'K', 'precision' => '2', 'thousand_separator' => ',', 'decimal_separator' => '.'],
['name' => 'Peruvian Sol', 'code' => 'PEN', 'symbol' => 'S/ ', 'precision' => '2', 'thousand_separator' => ',', 'decimal_separator' => '.'],
['name' => 'Botswana Pula', 'code' => 'BWP', 'symbol' => 'P', 'precision' => '2', 'thousand_separator' => ',', 'decimal_separator' => '.'],
+ ['name' => 'Hungarian Forint', 'code' => 'HUF', 'symbol' => 'Ft', 'precision' => '0', 'thousand_separator' => '.', 'decimal_separator' => ',', 'swap_currency_symbol' => true],
];
foreach ($currencies as $currency) {
diff --git a/resources/lang/en/texts.php b/resources/lang/en/texts.php
index f57f8479ed16..61ea182ec90b 100644
--- a/resources/lang/en/texts.php
+++ b/resources/lang/en/texts.php
@@ -2398,6 +2398,7 @@ $LANG = array(
'currency_myanmar_kyat' => 'Myanmar Kyat',
'currency_peruvian_sol' => 'Peruvian Sol',
'currency_botswana_pula' => 'Botswana Pula',
+ 'currency_hungarian_forint' => 'Hungarian Forint',
'review_app_help' => 'We hope you\'re enjoying using the app.
If you\'d consider writing a review we\'d greatly appreciate it!',
'use_english_version' => 'Make sure to use the English version of the files.
We use the column headers to match the fields.',