@csrf
@if ($errors->has('first_name')) {{ $errors->first('first_name') }} @endif
@if ($errors->has('last_name')) {{ $errors->first('last_name') }} @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
@if ($errors->has('password_confirmation')) {{ $errors->first('password_confirmation') }} @endif

{{-- Personal Information --}}
@if ($errors->has('company_name')) {{ $errors->first('company_name') }} @endif
@if ($errors->has('phone_no')) {{ $errors->first('phone_no') }} @endif
@if ($errors->has('registration_no')) {{ $errors->first('registration_no') }} @endif
@if ($errors->has('vat')) {{ $errors->first('vat') }} @endif
@if ($errors->has('business_location')) {{ $errors->first('business_location') }} @endif
@if ($errors->has('address_1')) {{ $errors->first('address_1') }} @endif
@if ($errors->has('address_2')) {{ $errors->first('address_2') }} @endif
@if ($errors->has('town')) {{ $errors->first('town') }} @endif
@if ($errors->has('city')) {{ $errors->first('city') }} @endif
@if ($errors->has('postal')) {{ $errors->first('postal') }} @endif
@if ($errors->has('country')) {{ $errors->first('country') }} @endif
I already have an account