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

{{ $student->name }}

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

{{ $student->email }}

{!! Form::label('phone', __('models/students.fields.phone').':') !!}

{{ $student->phone }}

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

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

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

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

{{ $student->created_at }}

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

{{ $student->updated_at }}