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

{{ $course->id }}

{!! Form::label('course_name', 'Course Name:') !!}

{{ $course->course_name }}

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

{{ $course->description }}

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

{{ $course->image }}

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

{{ $course->published }}

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

{{ $course->created_at }}

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

{{ $course->updated_at }}