diff --git a/resources/views/errors/403.blade.php b/resources/views/errors/403.blade.php
index 9632c4f06..924dfa5ec 100644
--- a/resources/views/errors/403.blade.php
+++ b/resources/views/errors/403.blade.php
@@ -10,7 +10,7 @@
{{ trans('errors.message.403') }}
-
+
@endsection
diff --git a/resources/views/errors/404.blade.php b/resources/views/errors/404.blade.php
index a141d73bc..33d992e14 100644
--- a/resources/views/errors/404.blade.php
+++ b/resources/views/errors/404.blade.php
@@ -10,7 +10,7 @@
{{ trans('errors.message.404') }}
-
+
@endsection
diff --git a/resources/views/errors/500.blade.php b/resources/views/errors/500.blade.php
index 5cc19ff69..a5ec37664 100644
--- a/resources/views/errors/500.blade.php
+++ b/resources/views/errors/500.blade.php
@@ -10,7 +10,7 @@
{{ trans('errors.message.500') }}
-
+
@endsection
diff --git a/resources/views/portal/dashboard/index.blade.php b/resources/views/portal/dashboard/index.blade.php
index cf5de5e5c..2df8e8531 100644
--- a/resources/views/portal/dashboard/index.blade.php
+++ b/resources/views/portal/dashboard/index.blade.php
@@ -1,6 +1,6 @@
@extends('layouts.portal')
-@section('title', trans('general.dashboard'))
+@section('title', trans_choice('general.dashboards', 1))
@section('content')
diff --git a/resources/views/wizard/finish/index.blade.php b/resources/views/wizard/finish/index.blade.php
index f2db08d1e..414883209 100644
--- a/resources/views/wizard/finish/index.blade.php
+++ b/resources/views/wizard/finish/index.blade.php
@@ -97,7 +97,7 @@
diff --git a/tests/Feature/Common/DashboardTest.php b/tests/Feature/Common/DashboardTest.php
index aa5bc4436..73a7a3446 100644
--- a/tests/Feature/Common/DashboardTest.php
+++ b/tests/Feature/Common/DashboardTest.php
@@ -11,6 +11,6 @@ class DashboardTest extends FeatureTestCase
$this->loginAs()
->get(route('dashboard'))
->assertStatus(200)
- ->assertSeeText(trans('general.dashboard'));
+ ->assertSeeText(trans_choice('general.dashboards', 1));
}
}