{!! Form::label('bank_name', 'Bank Name',array('class'=>'lbl' )); !!}
{!! Form::text('bank_name',$shopOwner->fldShopOwnerBankName,array('id'=>'bank_name','required','class'=>'text')) !!}
{!! Form::label('account_no', 'Account Number',array('class'=>'lbl' )); !!}
{!! Form::text('account_no',$shopOwner->fldShopOwnerBankAccountNumber,array('id'=>'account_no','required','class'=>'text')) !!}
{!! Form::label('type_of_account', 'Type Of Account',array('class'=>'lbl' )); !!}
{!! Form::text('type_of_account',$shopOwner->fldShopOwnerTypeofAccount,array('id'=>'type_of_account','required','class'=>'text')) !!}
{!! Form::label('routing_no', 'Routing Number',array('class'=>'lbl' )); !!}
{!! Form::text('routing_no',$shopOwner->fldShopOwnerBankRoutingNumber,array('id'=>'routing_no','required','class'=>'text')) !!}
Banking Address
{!! Form::label('banking_street', 'Street',array('class'=>'lbl' )); !!}
{!! Form::text('banking_street',$shopOwner->fldShopOwnerBankAddress1,array('id'=>'banking_street','class'=>'text')) !!}
{!! Form::label('banking_city', 'City',array('class'=>'lbl' )); !!}
{!! Form::text('banking_city',$shopOwner->fldShopOwnerBankCity,array('id'=>'banking_city','class'=>'text')) !!}
{!! Form::label('banking_state', 'State',array('class'=>'lbl' )); !!}
{!! Form::select('banking_state',array('0' => 'Select one')+App\Models\State::displayState(),$shopOwner->fldShopOwnerBankState,array('id'=>'state','data-placeholder'=>'Select State', 'class'=>'required')) !!}
{!! Form::label('banking_zip', 'ZIP',array('class'=>'lbl' )); !!}
{!! Form::text('banking_zip',$shopOwner->fldShopOwnerBankZIP,array('id'=>'banking_zip','class'=>'text')) !!}