{{ __('Maklumat Profil') }}

{{ __('Kemaskini maklumat profil dan alamat e-mel akaun anda.') }}

@csrf
@csrf @method('patch')
@if ($errors->has('name'))
{{ $errors->first('name') }}
@endif
@if ($errors->has('email'))
{{ $errors->first('email') }}
@endif @if ($user instanceof \Illuminate\Contracts\Auth\MustVerifyEmail && !$user->hasVerifiedEmail())

{{ __('Your email address is unverified.') }}

@if (session('status') === 'verification-link-sent')

{{ __('A new verification link has been sent to your email address.') }}

@endif
@endif
@if ($errors->has('phone'))
{{ $errors->first('phone') }}
@endif
@if ($user->job_type)
@endif
@if ($errors->has('address'))
{{ $errors->first('address') }}
@endif
@if (session('status') === 'profile-updated')

{{ __('Saved.') }}

@endif