@if ($errors->has('company_name'))
{{$errors->first('company_name')}}
@endif
@if ($errors->has('first_name'))
{{$errors->first('first_name')}}
@endif
@if ($errors->has('last_name'))
Field required
@endif
@if ($errors->has('email'))
{{$errors->first('email')}}
@endif
@if ($errors->has('phone'))
{{$errors->first('phone')}}
@endif
@if ($errors->has('address_1'))
{{$errors->first('address_1')}}
@endif
@if ($errors->has('address_2'))
{{$errors->first('address_2')}}
@endif
@if ($errors->has('city'))
{{$errors->first('city')}}
@endif
@if ($errors->has('zip_code'))
{{$errors->first('zip_code')}}
@endif
@foreach ($countries_db as $country)
@endforeach
@if ($errors->has('country'))
{{$errors->first('country')}}
@endif
@if($states_db && count($states_db) > 0)
@foreach ($states_db as $state)
@endforeach
@if ($errors->has('state'))
{{$errors->first('state')}}
@endif
@else
@if ($errors->has('other_state'))
{{$errors->first('other_state')}}
@endif
@endif