{!! Form::label('first_name', 'First Name:') !!}

{{ $user->first_name }}

{!! Form::label('last_name', 'Last Name:') !!}

{{ $user->last_name }}

{!! Form::label('email', 'Email:') !!}

{{ $user->email }}

{!! Form::label('image_url', 'Image Url:') !!}

{{ $user->image_url }}

{!! Form::label('phone', 'Phone:') !!}

{{ $user->phone }}

{!! Form::label('user_type', 'User Type:') !!}

{{ $user->user_type }}

{!! Form::label('country_id', 'Country:') !!}

{{ $user->country->name }}

{!! Form::label('password', 'Password:') !!}

{{ $user->password }}

{!! Form::label('created_at', 'Created At:') !!}

{{ $user->created_at }}

{!! Form::label('updated_at', 'Updated At:') !!}

{{ $user->updated_at }}