{!! Form::label('id', 'Id:') !!}

{!! $product->id !!}

{!! Form::label('category_id', 'Category Id:') !!}

{!! $product->category_id !!}

{!! Form::label('name', 'Name:') !!}

{!! $product->name !!}

{!! Form::label('image', 'Image:') !!}

{!! $product->image !!}

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

{!! $product->created_at !!}

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

{!! $product->updated_at !!}