diff --git a/resources/views/users/account_management.blade.php b/resources/views/users/account_management.blade.php
index c1466c0e90..3b40861a17 100644
--- a/resources/views/users/account_management.blade.php
+++ b/resources/views/users/account_management.blade.php
@@ -5,7 +5,7 @@
@if (!session(SESSION_USER_ACCOUNTS) || count(session(SESSION_USER_ACCOUNTS)) < 5)
- {!! Button::success(trans('texts.add_company'))->asLinkTo('/login?new_company=true') !!}
+ {!! Button::success(trans('texts.add_company'))->asLinkTo(url('/login?new_company=true')) !!}
@endif
@@ -27,7 +27,7 @@
@if (isset($account->logo_url))
{!! HTML::image($account->logo_url.'?no_cache='.time(), 'Logo', ['width' => 100]) !!}
@endif
-
+
{{ $account->account_name }}
{{ $account->user_name }}
@@ -53,13 +53,13 @@
{{ trans('texts.unlink_account') }}
-
- {{ trans('texts.are_you_sure') }}
+
+ {{ trans('texts.are_you_sure') }}
-
@@ -67,19 +67,19 @@
-@stop
\ No newline at end of file
+@stop
|