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

{{ $teacher->name }}

{!! Form::label('email', __('models/teachers.fields.email').':') !!}

{{ $teacher->email }}

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

{!! Form::label('is_active', __('models/teachers.fields.is_active').':') !!}

{{__('lang.'.($teacher->is_active?'active':'not_active'))}}

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

{{ $teacher->created_at }}

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

{{ $teacher->updated_at }}