@extends('layouts.admin') {{ $center->{'name_'.$lang} }} @section('content')
@if (session()->has('success'))
{{ session()->pull('success') }}
@endif
{{ trans('home.instructors') }}

{{ trans('home.table_contain_all_data_shortly_you_can_view_more_details') }}

@foreach ($instructors as $instructor) @endforeach
{{ trans('home.id') }} {{ trans('home.ssn') }} {{ trans('home.name') }} {{ trans('home.email') }} {{ trans('home.phone') }} {{ trans('home.image') }} {{ trans('home.status') }}
{{ $instructor->user->id }} {{ $instructor->user->instructor_info->ssn }} {{ $instructor->user->f_name.' '.$instructor->user->l_name }} {{ $instructor->user->email}} {{ $instructor->user->instructor_info->mobile}} @if($instructor->user->image) user->image)}} width="100"> @endif {{ $instructor->user->status==1? __('home.active') : __('home.inactive') }}
@endsection