Skip to content

Commit

Permalink
Remove unnecessary closing round bracket
Browse files Browse the repository at this point in the history
  • Loading branch information
Lubje authored Apr 10, 2020
1 parent dfcda6a commit e89fafa
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 e89fafa

Please sign in to comment.