{{-- The Master doesn't talk, he acts. --}}
{{-- Message for Ok --}} @if (session()->has('message'))
{!! session('message') !!}
@endif {{-- Message for Fails --}} @if (session()->has('fail'))
{!! session('fail') !!}
@endif
@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('phone')) {{ $errors->first('phone') }} @endif
@if($errors->has('city')) {{ $errors->first('city') }} @endif
@if ($currentRouteName !== 'contact' )
@if($errors->has('contact_time')) {{ __('concept.form.message_error') }} @endif
@endif
@if($errors->has('travel_count')) {{ $errors->first('travel_count') }} @endif
@if($errors->has('travel_date')) {{ $errors->first('travel_date') }} @endif
@if ($currentRouteName == 'contact' )
@if($errors->has('message')) {{ __('concept.form.message_error') }} @endif
@endif
@if($errors->has('is_partner')) {{ $errors->first('is_partner') }} @endif
@if($errors->has('privacy'))
{{-- {{ $errors->first('privacy') }} --}} {{ __('newsletter.privacy') }} @endif