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

{{ $post->id }}

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

{{ $post->name }}

{!! Form::label('description', 'Description:') !!}

{{ $post->description }}

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

{{ $post->image }}

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

{{ $post->category_id }}

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

{{ $post->created_at }}