@extends('layouts.app') @section('content')
@include('layouts.left-menu')

Teacher

@if (isset($teacher->photo)) Profile photo @else Profile photo @endif
{{$teacher->first_name}} {{$teacher->last_name}}
  • Gender: {{$teacher->gender}}
  • Phone: {{$teacher->phone}}
Teacher Information
First Name: {{$teacher->first_name}} Last Name: {{$teacher->last_name}}
Email: {{$teacher->email}} Nationality: {{$teacher->nationality}}
Address: {{$teacher->address}} Address2: {{$teacher->address2}}
City: {{$teacher->city}} Zip: {{$teacher->zip}}
Phone: {{$teacher->phone}} Gender: {{$teacher->gender}}
@include('layouts.footer')
@endsection