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

{{ $lesson->id }}

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

{{ $lesson->title }}

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

{{ $lesson->description }}

{!! Form::label('course_id', 'Course Id:') !!}

{{ $lesson->course_id }}

{!! Form::label('level_id', 'Level Id:') !!}

{{ $lesson->level_id }}

{!! Form::label('posisition', 'Posisition:') !!}

{{ $lesson->posisition }}

{!! Form::label('published', 'Published:') !!}

{{ $lesson->published }}

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

{{ $lesson->created_at }}

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

{{ $lesson->updated_at }}