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

{{ auth()->user()->name }}

{{ auth()->user()->job_role }}
{{ __('View Profile') }}

{{ __('Edit Profile') }}

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

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

@enderror
@error('job_role')

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

@enderror
@error('email')

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

@enderror
@error('phone_number')

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

@enderror
@error('profile_photo')

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

@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