@extends('layouts.app') @section('css') @endsection @section('page-header') @endsection @section('content')

{{ __('Create New Team Member') }}

@csrf
@error('name')

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

@enderror
@error('email')

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

@enderror
@error('password')

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

@enderror
@error('password_confirmation')

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

@enderror
@if (config('settings.chat_feature_user') == 'allow')
@endif @if (config('settings.image_feature_user') == 'allow')
@endif @if (config('settings.code_feature_user') == 'allow')
@endif @if (config('settings.voiceover_feature_user') == 'allow')
@endif @if (config('settings.whisper_feature_user') == 'allow')
@endif
@error('job_role')

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

@enderror
@error('phone_number')

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

@enderror
@error('company')

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

@enderror
@error('website')

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

@enderror
@error('address')

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

@enderror
@error('city')

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

@enderror
@error('postal_code')

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

@enderror
@error('country')

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

@enderror
@endsection @section('js') @endsection