mirror of
https://github.com/snipe/snipe-it.git
synced 2024-12-26 06:04:08 -08:00
Merge pull request #9987 from Godmartinz/bug/ch17111/donked-layout-on-required-field-error-in
Bug/ch17111/donked layout on required field error in
This commit is contained in:
commit
9f3b63387a
|
@ -445,7 +445,7 @@
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
error: function (data) {
|
error: function (data) {
|
||||||
// window.location.reload(true);
|
// window.location.reload(true);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
|
@ -15,13 +15,12 @@
|
||||||
<label for="months" class="col-md-3 control-label">
|
<label for="months" class="col-md-3 control-label">
|
||||||
{{ trans('admin/depreciations/general.number_of_months') }}
|
{{ trans('admin/depreciations/general.number_of_months') }}
|
||||||
</label>
|
</label>
|
||||||
<div class="col-md-7{{ (\App\Helpers\Helper::checkIfRequired($item, 'months')) ? ' required' : '' }}">
|
<div class="col-md-7 col-sm-12 {{ (\App\Helpers\Helper::checkIfRequired($item, 'months')) ? ' required' : '' }}">
|
||||||
<div class="col-md-2" style="padding-left:0px">
|
<input class="form-control" type="text" name="months" aria-label="months" id="months" value="{{ Request::old('months', $item->months) }}" style="width: 80px;" />
|
||||||
<input class="form-control" type="text" name="months" id="months" value="{{ Request::old('months', $item->months) }}" style="width: 80px;" />
|
{!! $errors->first('months', '<span class="alert-msg" aria-hidden="true"><i class="fa fa-times" aria-hidden="true"></i> :message</span>') !!}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
{!! $errors->first('months', '<span class="alert-msg" aria-hidden="true"><i class="fa fa-times" aria-hidden="true"></i> :message</span>') !!}
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- Depreciation Minimum -->
|
<!-- Depreciation Minimum -->
|
||||||
<div class="form-group {{ $errors->has('depreciation_min') ? ' has-error' : '' }}">
|
<div class="form-group {{ $errors->has('depreciation_min') ? ' has-error' : '' }}">
|
||||||
<label for="depreciation_min" class="col-md-3 control-label">
|
<label for="depreciation_min" class="col-md-3 control-label">
|
||||||
|
|
Loading…
Reference in a new issue