{!! Form::label('name', 'Name:', ['class' => 'col-6 control-label text-left']) !!}

{!! $user->name !!}

{!! Form::label('email', 'Email:', ['class' => 'col-6 control-label text-left']) !!}

{!! $user->email !!}

{!! Form::label('role', 'Role:', ['class' => 'col-6 control-label text-left']) !!}

{!! ucfirst($user->roles->first()->name ?? '---') !!}

{!! Form::label('created_at', 'Created At:', ['class' => 'col-6 control-label text-left']) !!}

{!! $user->created_at !!}