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

{{ __('Create New User') }}

@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
@error('role')

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

@enderror
@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