@extends('layouts.admin') @section('meta') {{trans('home.delete_centers_of_instructors')}} @endsection @section('content')
{!! Form::open(['route' => 'un_assign_instructor.delete', 'data-toggle'=>'validator']) !!} @csrf
{{trans('home.center')}}

@error('country_id') {{ $message }} @enderror
@error('instructors') {{ $message }} @enderror
@foreach ($users as $instructor) @endforeach
{{ trans('home.id') }} {{ trans('home.ssn') }} {{ trans('home.name') }} {{ trans('home.email') }} {{ trans('home.status') }}
{{ $instructor->id }} {{ $instructor->instructor_info?$instructor->instructor_info->ssn:'' }} {{ $instructor->f_name.' '.$instructor->l_name }} {{ $instructor->email}} {{ $instructor->status==1? __('home.active') : __('home.inactive') }}
{!! Form::close() !!}
@endsection @section('script') @endsection