Migrate form label on create status label page

This commit is contained in:
Marcus Moore 2025-02-05 14:40:20 -08:00
parent 32e1d4b2ef
commit 85bc8bc8f0
No known key found for this signature in database

View file

@ -34,7 +34,7 @@
<!-- Chart color -->
<div class="form-group{{ $errors->has('color') ? ' has-error' : '' }}">
{{ Form::label('color', trans('admin/statuslabels/table.color'), ['class' => 'col-md-3 control-label']) }}
<label for="color" class="col-md-3 control-label">{{ trans('admin/statuslabels/table.color') }}</label>
<div class="col-md-9">
<div class="input-group color">
{{ Form::text('color', old('color', $item->color), array('class' => 'form-control col-md-10', 'maxlength'=>'20')) }}