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

{{ $blog->id }}

{!! Form::label('title_ar', 'Title AR ') !!}

{{ $blog->getTranslation('title','ar') }}

{!! Form::label('title_en', 'Title EN ') !!}

{{ $blog->getTranslation('title','EN') }}

{!! Form::label('content_ar', 'Content AR ') !!}

{{ $blog->getTranslation('content','ar') }}

{!! Form::label('content_en', 'Content EN ') !!}

{{ $blog->getTranslation('content','EN') }}

{!! Form::label('summary_ar', 'Summary AR ') !!}

{{ $blog->getTranslation('summary','ar') }}

{!! Form::label('summary_en', 'Summary EN ') !!}

{{ $blog->getTranslation('summary','EN') }}

{!! 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 }}