新規登録画面のメール欄のtypeをemailに変更

This commit is contained in:
eai04191 2019-01-16 23:19:44 +09:00
parent 64f8b47ae0
commit c38d3fa799
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@
</div>
<div class="form-group">
<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>
<input id="email" name="email" class="form-control{{ $errors->has('email') ? ' is-invalid' : '' }}" type="email" value="{{ old('email') }}" required>
@if ($errors->has('email'))
<div class="invalid-feedback">{{ $errors->first('email') }}</div>