Skip to content

Commit

Permalink
Merge pull request #98 from Lubje/patch-1
Browse files Browse the repository at this point in the history
Remove unnecessary closing round bracket
  • Loading branch information
michaeldyrynda authored Apr 10, 2020
2 parents dfcda6a + e89fafa commit e8d7718
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
{{ __('E-Mail Address') }}:
</label>

<input id="email" type="email" class="form-input w-full @error('email') border-red-500 @enderror" name="email" value="{{ $email ?? old('email') ) }}" required autocomplete="email" autofocus>
<input id="email" type="email" class="form-input w-full @error('email') border-red-500 @enderror" name="email" value="{{ $email ?? old('email') }}" required autocomplete="email" autofocus>

@error('email')
<p class="text-red-500 text-xs italic mt-4">
Expand Down

0 comments on commit e8d7718

Please sign in to comment.