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

{{ $seller->first_name }}

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

{{ $seller->last_name }}

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

{{ $seller->email }}

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

{{ $seller->image_url }}

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

{{ $seller->phone }}

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

{{ $seller->user_type }}

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

{{ $seller->country->name }}

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

{{ $seller->password }}

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

{{ $seller->created_at }}

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

{{ $seller->updated_at }}