{!! Form::label('firstname', '* First Name',array('class'=>'lbl' )); !!}
{!! Form::text('firstname',$shopOwner->fldShopOwnerFirstname,array('id'=>'firstname','required','class'=>'text')) !!}
@if($errors->updateProfile->first('firstname'))
{!!$errors->updateProfile->first('firstname')!!}
@endif
{!! Form::label('lastname', '* Last Name',array('class'=>'lbl' )); !!}
{!! Form::text('lastname',$shopOwner->fldShopOwnerLastname,array('id'=>'lastname','required','class'=>'text')) !!}
@if($errors->updateProfile->first('lastname'))
{!!$errors->updateProfile->first('lastname')!!}
@endif
{!! Form::label('business_name', 'Business Name',array('class'=>'lbl' )); !!}
{!! Form::text('business_name',$shopOwner->fldShopOwnerBusiness,array('id'=>'business_name','class'=>'text')) !!}
@if($errors->updateProfile->first('business_name'))
{!!$errors->updateProfile->first('business_name')!!}
@endif
{!! Form::label('phone', '* Contact #',array('class'=>'lbl' )); !!}
{!! Form::text('phone',$shopOwner->fldShopOwnerPhoneNo,array('id'=>'phone','required','class'=>'text phone_us')) !!}
@if($errors->updateProfile->first('phone'))
{!!$errors->updateProfile->first('phone')!!}
@endif
{!! Form::label('email', '* Email Address',array('class'=>'lbl' )); !!}
{!! Form::email('email',$shopOwner->fldShopOwnerEmail,array('id'=>'email','class'=>'text','required','readonly','style'=>'background-color: #F5F4F3;')) !!}
@if($errors->updateProfile->first('email'))
{!!$errors->updateProfile->first('email')!!}
@endif
Address Information
{!! Form::label('address', '* Street',array('class'=>'lbl' )); !!}
{!! Form::text('address',$shopOwner->fldShopOwnerAddress,array('id'=>'address','class'=>'text')) !!}
@if($errors->updateProfile->first('address'))
{!!$errors->updateProfile->first('address')!!}
@endif
{!! Form::label('city', '* City',array('class'=>'lbl' )); !!}
{!! Form::text('city',$shopOwner->fldShopOwnerCity,array('id'=>'city','required','class'=>'text')) !!}
@if($errors->updateProfile->first('city'))
{!!$errors->updateProfile->first('city')!!}
@endif
{!! Form::label('state', '* State',array('class'=>'lbl' )); !!}
{!! Form::select('state',array('' => 'Select one')+App\Models\State::displayState(),isset($shopOwner->fldShopOwnerState) ? $shopOwner->fldShopOwnerState : "",array('id'=>'state','data-placeholder'=>'Select State', 'class'=>'required')) !!}
@if($errors->updateProfile->first('state'))
Please select your State
@endif
{!! Form::label('zip', '* ZIP',array('class'=>'lbl' )); !!}
{!! Form::text('zip',$shopOwner->fldShopOwnerZip,array('id'=>'zip','required','class'=>'text')) !!}
@if($errors->updateProfile->first('zip'))
{!!$errors->updateProfile->first('zip')!!}
@endif
{!! Form::label('career', 'Career',array('class'=>'lbl' )); !!}
{!! Form::text('career',$shopOwner->fldShopOwnerProfession,array('id'=>'career','class'=>'text')) !!}
{!! Form::label('authorization', 'Authorization',array('class'=>'lbl' )); !!}
{!! Form::text('authorization',$shopOwner->fldShopOwnerAuthorization,array('id'=>'authorization','class'=>'text')) !!}