mirror of
https://github.com/snipe/snipe-it.git
synced 2025-03-05 20:52:15 -08:00
Fixed layout sorta
Signed-off-by: snipe <snipe@snipe.net>
This commit is contained in:
parent
9dba03646b
commit
61591633f8
|
@ -54,16 +54,16 @@
|
||||||
@section('inputFields')
|
@section('inputFields')
|
||||||
<!-- Name -->
|
<!-- Name -->
|
||||||
<div class="form-group {{ $errors->has('name') ? ' has-error' : '' }}">
|
<div class="form-group {{ $errors->has('name') ? ' has-error' : '' }}">
|
||||||
<label for="name" class="col-md-3 control-label">{{ trans('admin/groups/titles.group_name') }}</label>
|
<label for="name" class="col-md-2 control-label">{{ trans('admin/groups/titles.group_name') }}</label>
|
||||||
<div class="col-md-6 required">
|
<div class="col-md-9 required">
|
||||||
<input class="form-control" type="text" name="name" id="name" value="{{ old('name', $group->name) }}" required />
|
<input class="form-control" type="text" name="name" id="name" value="{{ old('name', $group->name) }}" required />
|
||||||
{!! $errors->first('name', '<span class="alert-msg" aria-hidden="true"><i class="fas fa-times" aria-hidden="true"></i> :message</span>') !!}
|
{!! $errors->first('name', '<span class="alert-msg" aria-hidden="true"><i class="fas fa-times" aria-hidden="true"></i> :message</span>') !!}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="form-group{!! $errors->has('notes') ? ' has-error' : '' !!}">
|
<div class="form-group{!! $errors->has('notes') ? ' has-error' : '' !!}">
|
||||||
<label for="notes" class="col-md-3 control-label">{{ trans('general.notes') }}</label>
|
<label for="notes" class="col-md-2 control-label">{{ trans('general.notes') }}</label>
|
||||||
<div class="col-md-8">
|
<div class="col-md-9">
|
||||||
<x-input.textarea
|
<x-input.textarea
|
||||||
name="notes"
|
name="notes"
|
||||||
id="notes"
|
id="notes"
|
||||||
|
|
Loading…
Reference in a new issue