30 lines
No EOL
1.5 KiB
PHP
30 lines
No EOL
1.5 KiB
PHP
|
|
<div class="card mb-4">
|
|
<h5 class="card-header">
|
|
{{__('Create Password')}}
|
|
</h5>
|
|
<div class="card-body">
|
|
<div class="form-group row">
|
|
<label class="col-form-label col-sm-2 text-sm-right">{{__('New Password')}}*</label>
|
|
<div class="col-sm-10">
|
|
<input class="form-control {{ $errors->has('password') ? 'is-invalid' : '' }}" type="password" name="password" placeholder="{{__('New Password')}}*" required>
|
|
@if ($errors->has('password'))
|
|
<span class="invalid-feedback" role="alert">
|
|
<strong>{{ $errors->first('password') }}</strong>
|
|
</span>
|
|
@endif
|
|
</div>
|
|
</div>
|
|
<div class="form-group row">
|
|
<label class="col-form-label col-sm-2 text-sm-right">{{__('Confirm new Password')}}*</label>
|
|
<div class="col-sm-10">
|
|
<input class="form-control" {{ $errors->has('password_confirmation') ? 'is-invalid' : '' }} type="password" name="password_confirmation" placeholder="{{__('Confirm new Password')}}*" required>
|
|
@if ($errors->has('password_confirmation'))
|
|
<span class="invalid-feedback" role="alert">
|
|
<strong>{{ $errors->first('password_confirmation') }}</strong>
|
|
</span>
|
|
@endif
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div> |