{!! Form::label('id', 'Id:', ['class' => 'col-3 control-label text-right']) !!}

{!! $category->id !!}

{!! Form::label('name', 'Name:', ['class' => 'col-3 control-label text-right']) !!}

{!! $category->name !!}

{!! Form::label('description', 'Description:', ['class' => 'col-3 control-label text-right']) !!}

{!! $category->description !!}

{!! Form::label('image', 'Image:', ['class' => 'col-3 control-label text-right']) !!}

{!! $category->image !!}

{!! Form::label('created_at', 'Created At:', ['class' => 'col-3 control-label text-right']) !!}

{!! $category->created_at !!}

{!! Form::label('updated_at', 'Updated At:', ['class' => 'col-3 control-label text-right']) !!}

{!! $category->updated_at !!}