@extends('layouts.app') @section('form-title') {{ __('Client user') }} @endsection @section('breadcrumb') @endsection @section('content') @include('partials.modals.maps'); @php $google_maps_field = $settings__->google_maps_field ? json_decode($settings__->google_maps_field) : null; @endphp
@csrf
@if($errors->has('name'))

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

@endif
@if($errors->has('color'))

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

@endif
{!! organisations('organisation', old('organisation')) !!} @if($errors->has('organisation'))

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

@endif
@if($errors->has('zip'))

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

@endif
@if($errors->has('house_number'))

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

@endif
@if($errors->has('street'))

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

@endif
@if($errors->has('city'))

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

@endif
@if($google_maps_field->option_to_fill_in === 'yes')
@if($google_maps_field->forward_to_gm_api === 'yes') @else @endif @if($errors->has('gml'))

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

@endif
@endif
{!! countries(156) !!} @if($errors->has('country'))

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

@endif
@if($errors->has('mobile'))

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

@endif
@if($errors->has('phone'))

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

@endif
@if($errors->has('email'))

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

@endif
{!! notificationTypes('notification_type', old('notification_type')) !!} @if($errors->has('notification_type'))

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

@endif
@if($errors->has('job_title'))

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

@endif
@if(getAuthUser()->can('change users status'))
{!! userStatus('status', old('status')) !!} @if($errors->has('status'))

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

@endif
@endif
{!! languages('language', old('language')) !!} @if($errors->has('language'))

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

@endif
@if($errors->has('password'))

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

@endif
@if($errors->has('avatar'))

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

@endif
@endsection @push('child-scripts') @include('partials.postcode-js') @endpush