@extends('layouts.admin') @section('title','Show User Profile') @section('styles') @endsection @section('content')

Show User Profile

{{$user->first_name}} {{$user->last_name}}

{{$user->account}}

  • Phone : {{$user->mobile}}
  • Email : {{$user->email}}
  • Sign Up IP : {{$user->sign_up_ip}}
  • Last Login : {{$user->last_login_time}}

Personal Information

@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf
We'll never share your email with anyone else.

Address Information

@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf

Change Password

@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf
@endsection @section('scripts') @endsection