File tree 3 files changed +5
-5
lines changed
Auth/Console/stubs/make/views/auth/passwords
Mail/resources/views/html
3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 17
17
<label for="email" class="col-md-4 col-form-label text-md-right">{{ __('E-Mail Address') }}</label>
18
18
19
19
<div class="col-md-6">
20
- <input id="email" type="email" class="form-control{{ $errors->has('email') ? ' is-invalid' : '' }}" name="email" value="{{ $email or old('email') }}" required autofocus>
20
+ <input id="email" type="email" class="form-control{{ $errors->has('email') ? ' is-invalid' : '' }}" name="email" value="{{ $email ?? old('email') }}" required autofocus>
21
21
22
22
@if ($errors->has('email'))
23
23
<span class="invalid-feedback">
Original file line number Diff line number Diff line change 7
7
<table border =" 0" cellpadding =" 0" cellspacing =" 0" >
8
8
<tr >
9
9
<td >
10
- <a href =" {{ $url } }" class =" button button-{{ $color or ' blue' } }" target =" _blank" >{{ $slot } } </a >
10
+ <a href =" {{ $url } }" class =" button button-{{ $color ?? ' blue' } }" target =" _blank" >{{ $slot } } </a >
11
11
</td >
12
12
</tr >
13
13
</table >
Original file line number Diff line number Diff line change 27
27
<tr >
28
28
<td align =" center" >
29
29
<table class =" content" width =" 100%" cellpadding =" 0" cellspacing =" 0" >
30
- {{ $header or ' ' } }
30
+ {{ $header ?? ' ' } }
31
31
32
32
<!-- Email Body -->
33
33
<tr >
38
38
<td class =" content-cell" >
39
39
{{ Illuminate \Mail \Markdown:: parse ($slot ) } }
40
40
41
- {{ $subcopy or ' ' } }
41
+ {{ $subcopy ?? ' ' } }
42
42
</td >
43
43
</tr >
44
44
</table >
45
45
</td >
46
46
</tr >
47
47
48
- {{ $footer or ' ' } }
48
+ {{ $footer ?? ' ' } }
49
49
</table >
50
50
</td >
51
51
</tr >
You can’t perform that action at this time.
0 commit comments