Skip to content

Commit f124752

Browse files
madman-81Aarjan
and
Aarjan
authored
Use the same notation for email as Laravel Framework does (#217)
Co-authored-by: Aarjan <[email protected]>
1 parent 6d20804 commit f124752

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/Auth/bootstrap-stubs/auth/login.stub

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
@csrf
1313

1414
<div class="row mb-3">
15-
<label for="email" class="col-md-4 col-form-label text-md-end">{{ __('E-Mail Address') }}</label>
15+
<label for="email" class="col-md-4 col-form-label text-md-end">{{ __('Email Address') }}</label>
1616

1717
<div class="col-md-6">
1818
<input id="email" type="email" class="form-control @error('email') is-invalid @enderror" name="email" value="{{ old('email') }}" required autocomplete="email" autofocus>

src/Auth/bootstrap-stubs/auth/passwords/email.stub

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
@csrf
1919

2020
<div class="row mb-3">
21-
<label for="email" class="col-md-4 col-form-label text-md-end">{{ __('E-Mail Address') }}</label>
21+
<label for="email" class="col-md-4 col-form-label text-md-end">{{ __('Email Address') }}</label>
2222

2323
<div class="col-md-6">
2424
<input id="email" type="email" class="form-control @error('email') is-invalid @enderror" name="email" value="{{ old('email') }}" required autocomplete="email" autofocus>

src/Auth/bootstrap-stubs/auth/passwords/reset.stub

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<input type="hidden" name="token" value="{{ $token }}">
1515

1616
<div class="row mb-3">
17-
<label for="email" class="col-md-4 col-form-label text-md-end">{{ __('E-Mail Address') }}</label>
17+
<label for="email" class="col-md-4 col-form-label text-md-end">{{ __('Email Address') }}</label>
1818

1919
<div class="col-md-6">
2020
<input id="email" type="email" class="form-control @error('email') is-invalid @enderror" name="email" value="{{ $email ?? old('email') }}" required autocomplete="email" autofocus>

src/Auth/bootstrap-stubs/auth/register.stub

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
</div>
2727

2828
<div class="row mb-3">
29-
<label for="email" class="col-md-4 col-form-label text-md-end">{{ __('E-Mail Address') }}</label>
29+
<label for="email" class="col-md-4 col-form-label text-md-end">{{ __('Email Address') }}</label>
3030

3131
<div class="col-md-6">
3232
<input id="email" type="email" class="form-control @error('email') is-invalid @enderror" name="email" value="{{ old('email') }}" required autocomplete="email">

0 commit comments

Comments
 (0)