@extends('layouts.master') @section('pageTitle', __('Profile')) @section('content')

{{ __('Profile Details') }}

@if($errors->any())
@foreach($errors->all() as $error)

{{ $error }}

@endforeach
@endif

{{ $user->first_name }}

{{ $user->last_name }}

{{ $user->username }}

{{ $user->email }}

{{ dataTranslation($user->role_name) }}
@php $ulang=$languages->where('short_name',$user->user_language)->first(); @endphp
{{ $ulang->name }}

{{ $user->cell_phone_number }}

home_address);?>
@endsection