@if ($errors->has('firstname'))
{{ $errors->first('firstname') }}
@endif
@if ($errors->has('lastname'))
{{ $errors->first('lastname') }}
@endif
@if ($errors->has('mobileNumber'))
{{ $errors->first('mobileNumber') }}
@endif
@foreach ($regions as $region)
@endforeach
@if ($errors->has('region'))
{{ $errors->first('region') }}
@endif
@foreach ($area as $a)
@endforeach
@if ($errors->has('area'))
{{ $errors->first('area') }}
@endif
@foreach ($products as $product)
@endforeach
@if ($errors->has('product'))
{{ $errors->first('product') }}
@endif
@foreach ($segments as $segment)
@endforeach
@if ($errors->has('segment'))
{{ $errors->first('segment') }}
@endif