ユーザー名は変更不能である旨を登録画面に明記する

This commit is contained in:
shibafu 2019-09-15 02:10:54 +09:00
parent ce8855510c
commit 7858bd0a5f
1 changed files with 2 additions and 1 deletions

View File

@ -24,6 +24,7 @@
<div class="form-group">
<label for="name"><span class="oi oi-person"></span> ユーザー名</label>
<input id="name" name="name" class="form-control{{ $errors->has('name') ? ' is-invalid' : '' }}" type="text" value="{{ old('name') }}" required>
<small class="form-text text-muted">半角英数字と一部記号が使用できます。一度決めたら変更できません。</small>
@if ($errors->has('name'))
<div class="invalid-feedback">{{ $errors->first('name') }}</div>
@ -81,4 +82,4 @@
</div>
</div>
</div>
@endsection
@endsection