Skip to content
This repository has been archived by the owner on Oct 1, 2021. It is now read-only.

Commit

Permalink
refactor: use ui breadcrumbs component (#29)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexbarnsley authored Dec 7, 2020
1 parent e7171d1 commit e864f4c
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion resources/views/auth/forgot-password.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
@endsection

@section('breadcrumbs')
<x-breadcrumbs :crumbs="[
<x-ark-breadcrumbs :crumbs="[
['route' => 'login', 'label' => trans('fortify::menu.sign_in')],
['label' => trans('fortify::menu.password_reset_email')],
]" />
Expand Down
2 changes: 1 addition & 1 deletion resources/views/auth/login.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
@endsection

@section('breadcrumbs')
<x-breadcrumbs :crumbs="[
<x-ark-breadcrumbs :crumbs="[
['route' => 'home', 'label' => trans('fortify::menu.home')],
['label' => trans('fortify::menu.sign_in')],
]" />
Expand Down
2 changes: 1 addition & 1 deletion resources/views/auth/register.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
@endsection

@section('breadcrumbs')
<x-breadcrumbs :crumbs="[
<x-ark-breadcrumbs :crumbs="[
['route' => 'login', 'label' => trans('fortify::menu.sign_in')],
['label' => trans('fortify::menu.sign_up')],
]" />
Expand Down
2 changes: 1 addition & 1 deletion resources/views/auth/reset-password.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
@endslot

@section('breadcrumbs')
<x-breadcrumbs :crumbs="[
<x-ark-breadcrumbs :crumbs="[
['route' => 'login', 'label' => trans('fortify::menu.sign_in')],
['label' => trans('fortify::menu.reset_password')],
]" />
Expand Down
2 changes: 1 addition & 1 deletion resources/views/auth/two-factor-challenge.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
@endsection

@section('breadcrumbs')
<x-breadcrumbs :crumbs="[
<x-ark-breadcrumbs :crumbs="[
['route' => 'login', 'label' => trans('fortify::menu.sign_in')],
['label' => trans('fortify::menu.2fa')],
]" />
Expand Down
2 changes: 1 addition & 1 deletion resources/views/auth/verify-email.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
@endsection

@section('breadcrumbs')
<x-breadcrumbs :crumbs="[
<x-ark-breadcrumbs :crumbs="[
['route' => 'login', 'label' =>trans('fortify::menu.sign_in')],
['label' => trans('fortify::menu.verify')],
]" />
Expand Down

0 comments on commit e864f4c

Please sign in to comment.