{{-- Title --}}

{{ __('messages.global.register') }}

{{-- Form --}}
{{-- CSRF --}} @csrf {{-- Account Type Field --}}
@if ($errors->has('account_type'))

{{ $errors->first('account_type') }}

@endif
{{-- Organization Info Message --}}

Il existe plusieurs types de comptes PRO.

Avant de créer un compte professionnel, veuillez contacter le support Animal Search pour qu'il puisse vous guider vers le meilleur choix.

Vous pouvez prendre contact avec le support par téléphone au +32(0)497/11.40.45 du lundi au jeudi de 9h-17h et le vendredi de 9h-15h ou par e-mail à l’adresse : support@animal-search.be

{{-- Organization Name Field --}}
@if ($errors->has('organization_name'))

{{ $errors->first('organization_name') }}

@endif
{{-- Organization Number Field --}}
@if ($errors->has('organization_number'))

{{ $errors->first('organization_number') }}

@endif
{{-- Organization Address Field --}}
@if ($errors->has('organization_address'))

{{ $errors->first('organization_address') }}

@elseif ($errors->has('organization_location_latitude'))

{{ $errors->first('organization_location_latitude') }}

@elseif ($errors->has('organization_location_longitude'))

{{ $errors->first('organization_location_longitude') }}

@elseif ($errors->has('organization_location_zipcode'))

{{ $errors->first('organization_location_zipcode') }}

@elseif ($errors->has('organization_location_country'))

{{ $errors->first('organization_location_country') }}

@endif
{{-- Organization Function Field --}}
@if ($errors->has('organization_function'))

{{ $errors->first('organization_function') }}

@endif
{{-- First Name Field --}}
@if ($errors->has('first_name'))

{{ $errors->first('first_name') }}

@endif
{{-- Last Name Field --}}
@if ($errors->has('last_name'))

{{ $errors->first('last_name') }}

@endif
{{-- Date of birth Field --}}
{{-- DOB Day Field --}}
{{-- DOB Month Field --}}
{{-- DOB Year Field --}}
@if ($errors->has('date_of_birth'))

{{ $errors->first('date_of_birth') }}

@endif
{{-- Address Field --}}
@if ($errors->has('address'))

{{ $errors->first('address') }}

@elseif ($errors->has('location_latitude'))

{{ $errors->first('location_latitude') }}

@elseif ($errors->has('location_longitude'))

{{ $errors->first('location_longitude') }}

@elseif ($errors->has('location_zipcode'))

{{ $errors->first('location_zipcode') }}

@elseif ($errors->has('location_country'))

{{ $errors->first('location_country') }}

@endif
{{-- Phone Field --}}
@if ($errors->has('phone'))

{{ $errors->first('phone') }}

@endif
{{-- Gender Field --}}
@if ($errors->has('gender'))

{{ $errors->first('gender') }}

@endif
{{-- Email Field --}}
@if ($errors->has('email'))

{{ $errors->first('email') }}

@endif
{{-- Password Field --}}
@if ($errors->has('password'))

{{ $errors->first('password') }}

@endif
{{-- OptIn Field --}}
@if ($errors->has('opt_in'))

{{ $errors->first('opt_in') }}

@endif
{{-- Submit Button --}}
@section('js') @endsection