{!! Form::label('id', 'Id:', ['class' => 'col-md-3 control-label text-md-right mx-1']) !!}

{!! $user->id !!}

{!! Form::label('name', 'Name:', ['class' => 'col-md-3 control-label text-md-right mx-1']) !!}

{!! $user->name !!}

{!! Form::label('email', 'Email:', ['class' => 'col-md-3 control-label text-md-right mx-1']) !!}

{!! $user->email !!}

{!! Form::label('password', 'Password:', ['class' => 'col-md-3 control-label text-md-right mx-1']) !!}

{!! $user->password !!}

{!! Form::label('api_token', 'Api Token:', ['class' => 'col-md-3 control-label text-md-right mx-1']) !!}

{!! $user->api_token !!}

{!! Form::label('store_id', 'Store Id:', ['class' => 'col-md-3 control-label text-md-right mx-1']) !!}

{!! $user->store_id !!}

{!! Form::label('role_id', 'Role Id:', ['class' => 'col-md-3 control-label text-md-right mx-1']) !!}

{!! $user->role_id !!}

{!! Form::label('remember_token', 'Remember Token:', ['class' => 'col-md-3 control-label text-md-right mx-1']) !!}

{!! $user->remember_token !!}

{!! Form::label('created_at', 'Created At:', ['class' => 'col-md-3 control-label text-md-right mx-1']) !!}

{!! $user->created_at !!}

{!! Form::label('updated_at', 'Updated At:', ['class' => 'col-md-3 control-label text-md-right mx-1']) !!}

{!! $user->updated_at !!}