todstoychev / Laravel5Starter

A Laravel 5 starter project. It contains user managment with roles and basic admin panel with application settings.
53 stars 26 forks source link

Clicking login button results in a 404 #28

Closed losttheplot closed 8 years ago

losttheplot commented 8 years ago

I have traced the cause to line 41 of resources/views/navigation.blade.php which is missing a slash before users, thus:

<a href="{{ url(\Illuminate\Support\Facades\App::getLocale() . 'users/login') }}">
should be
<a href="{{ url(\Illuminate\Support\Facades\App::getLocale() . '/users/login') }}">
todstoychev commented 8 years ago

Thanx for the response! I will fix it very soon.

On Mar 24 2016, at 1:12 pm, Roy Sinclair <notifications@github.com> wrote:

I have traced the cause to line 41 of resources/views/navigation.blade.php which is missing a slash before users, thus:

<a href="{{ url(\Illuminate\Support\Facades\App::getLocale() .

'users/login') }}">

should be

<a href="{{ url(\Illuminate\Support\Facades\App::getLocale() .

'/users/login') }}">


You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub

todstoychev commented 8 years ago

This should be fixed by release v0.9.3. Thanx for the response.

todstoychev commented 8 years ago

Since this one is fixed from 0.9.3 it will be closed.