{!! Form::label('name', __('models/groups.fields.name').':') !!}

{{ $group->name }}

{!! Form::label('description', __('models/groups.fields.description').':') !!}

{{ $group->description }}

{!! Form::label('teacher_id', __('models/groups.fields.teacher_id').':') !!}

{{ optional($group->teacher)->name }}

{!! Form::label('subject_id', __('models/groups.fields.subject_id').':') !!}

{{ optional($group->subject)->name }}

{!! Form::label('photo', __('models/groups.fields.photo').':') !!}

{!! Form::label('created_at', __('models/groups.fields.created_at').':') !!}

{{ $group->created_at }}

{!! Form::label('updated_at', __('models/groups.fields.updated_at').':') !!}

{{ $group->updated_at }}