@extends('layouts.main_dashboard.app') @section('title', __('dashboard.Teachers') . ' | ' . __('dashboard.View Teacher')) @section('content')

{{ __('dashboard.Teacher Profile') }}

{{ $teacher->name }}

{{ $teacher->email }}

@if($teacher->avatar) {{ $teacher->name }} @else @endif

{{ $teacher->name }}

{{ __('dashboard.Email') }}

{{ $teacher->email ?: '---' }}

{{ __('dashboard.Phone') }}

{{ $teacher->phone ?: '---' }}

{{ __('dashboard.Date of Birth') }}

{{ $teacher->date_of_birth ?: '---' }}

{{ __('dashboard.Gender') }}

{{ $teacher->gender ?: '---' }}

{{ __('dashboard.Address') }}

{{ $teacher->address ?: '---' }}

@endsection