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

{{ __('Edit User Information') }}

@method('PUT') @csrf
@error('name')

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

@enderror
@error('email')

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

@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

{{ __('Edit User Settings') }}

@method('PUT') @csrf
@error('status')

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

@enderror
@error('group')

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

@enderror
@error('password')

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

@enderror
@error('password_confirmation')

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

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