Skip to content

Commit

Permalink
fix: closing tags
Browse files Browse the repository at this point in the history
  • Loading branch information
ch4r-ch4r authored Aug 25, 2024
1 parent 9545687 commit 998da3c
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@
])
@if(count($socialProviders))
@if($separator && config('devdojo.auth.settings.social_providers_location') != 'top')
<x-auth::elements.separator class="my-6">{{ $separator_text }}</x-auto::elements.separator>
<x-auth::elements.separator class="my-6">{{ $separator_text }}</x-auth::elements.separator>
@endif
<div class="relative space-y-2 w-full">
@foreach($socialProviders as $slug => $provider)
<x-auth::elements.social-button :$slug :$provider />
@endforeach
</div>
@if($separator && config('devdojo.auth.settings.social_providers_location') == 'top')
<x-auth::elements.separator class="my-6">{{ $separator_text }}</x-auto::elements.separator>
<x-auth::elements.separator class="my-6">{{ $separator_text }}</x-auth::elements.separator>
@endif
@endif
@endif

0 comments on commit 998da3c

Please sign in to comment.