ログインフォームのメール欄のtypeをemailに変更
This commit is contained in:
parent
2ca6c4c60d
commit
64f8b47ae0
@ -13,7 +13,7 @@
|
|||||||
|
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label for="email"><span class="oi oi-envelope-closed"></span> メールアドレス</label>
|
<label for="email"><span class="oi oi-envelope-closed"></span> メールアドレス</label>
|
||||||
<input id="email" name="email" class="form-control{{ $errors->has('email') ? ' is-invalid' : '' }}" type="text" value="{{ old('email') }}" required autofocus>
|
<input id="email" name="email" class="form-control{{ $errors->has('email') ? ' is-invalid' : '' }}" type="email" value="{{ old('email') }}" required autofocus>
|
||||||
|
|
||||||
@if ($errors->has('email'))
|
@if ($errors->has('email'))
|
||||||
<div class="invalid-feedback">{{ $errors->first('email') }}</div>
|
<div class="invalid-feedback">{{ $errors->first('email') }}</div>
|
||||||
|
Loading…
Reference in New Issue
Block a user