File tree Expand file tree Collapse file tree
Auth/Console/stubs/make/views/auth/passwords
Mail/resources/views/html Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1717 <label for="email" class="col-md-4 col-form-label text-md-right">{{ __('E-Mail Address') }}</label>
1818
1919 <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>
2121
2222 @if ($errors->has('email'))
2323 <span class="invalid-feedback">
Original file line number Diff line number Diff line change 77 <table border =" 0" cellpadding =" 0" cellspacing =" 0" >
88 <tr >
99 <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 >
1111 </td >
1212 </tr >
1313 </table >
Original file line number Diff line number Diff line change 2727 <tr >
2828 <td align =" center" >
2929 <table class =" content" width =" 100%" cellpadding =" 0" cellspacing =" 0" >
30- {{ $header or ' ' } }
30+ {{ $header ?? ' ' } }
3131
3232 <!-- Email Body -->
3333 <tr >
3838 <td class =" content-cell" >
3939 {{ Illuminate \Mail \Markdown:: parse ($slot ) } }
4040
41- {{ $subcopy or ' ' } }
41+ {{ $subcopy ?? ' ' } }
4242 </td >
4343 </tr >
4444 </table >
4545 </td >
4646 </tr >
4747
48- {{ $footer or ' ' } }
48+ {{ $footer ?? ' ' } }
4949 </table >
5050 </td >
5151 </tr >
You can’t perform that action at this time.
0 commit comments