First time using Laravel and i've downloaded a project. I get this error htmlspecialchars() expects parameter 1 to be string, array given I've found it is due to the following:
@guest
<li class="nav-item"><a class="nav-link" href="{{ route('login') }}">{{ __('Login') }}</a></li>
@if (Route::has('register'))
<li class="nav-item"><a class="nav-link" href="{{ route('register') }}">{{ __('Register') }}</a></li>
@endif
If i remove {{ __('Login') }} and {{ __('Register') }} the error is removed and i can view the page? How do i solve? What could be the reason for this error?