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

{{ $blog->id }}

{!! Form::label('title', 'Title:') !!}

{{ $blog->title }}

{!! Form::label('content', 'Content:') !!}

{{ $blog->content }}

{!! Form::label('puplished_date', 'Published Date:') !!}

{{ $blog->puplished_date }}

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

{{ $blog->created_at }}

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

{{ $blog->updated_at }}