Removed duplicate state field

This commit is contained in:
snipe 2020-09-03 16:00:26 -07:00
parent a57ab29af6
commit c29ec6a100
No known key found for this signature in database
GPG key ID: 10BFFDA3ED34B5AC

View file

@ -27,8 +27,7 @@
<div class="col-md-7">
{{Form::text('state', old('state', $item->state), array('class' => 'form-control', 'aria-label'=>'state')) }}
{!! $errors->first('state', '<span class="alert-msg" aria-hidden="true"><i class="fa fa-times" aria-hidden="true"></i> :message</span>') !!}
{{Form::text('state', Request::old('state', $item->state), array('class' => 'form-control')) }}
{!! $errors->first('state', '<span class="alert-msg"><i class="fa fa-times"></i> :message</span>') !!}
</div>
</div>