Skip to content

Commit

Permalink
Fix call to undefined method on $errors
Browse files Browse the repository at this point in the history
  • Loading branch information
joelbutcher committed Oct 25, 2023
1 parent d10bea4 commit be8aaa1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<div class="font-medium text-red-600 dark:text-red-400">{{ __('Whoops! Something went wrong.') }}</div>

<ul class="mt-3 list-disc list-inside text-sm text-red-600 dark:text-red-400">
@foreach ($errors->except('socialstream')->all() as $error)
@foreach ($errors->all() as $error)
<li>{{ $error }}</li>
@endforeach
</ul>
Expand Down

0 comments on commit be8aaa1

Please sign in to comment.