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

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