@extends('layouts.master')
@section('css')
@toastr_css
@section('title')
{{trans('Students_trans.Student_details')}}
@stop
@endsection
@section('page-header')
@section('PageTitle')
{{trans('Students_trans.Student_details')}}
@stop
@endsection
@section('content')
| {{trans('Students_trans.name_ar')}} |
{{ $user->name }} |
{{trans('Students_trans.email')}} |
{{$user->email}} |
{{trans('Students_trans.gender')}} |
{{$user->gender->name}} |
{{trans('Students_trans.Nationality')}} |
{{$user->nationality->name}} |
| {{trans('Students_trans.Grade')}} |
{{ $user->grade->name }} |
{{trans('Students_trans.Semester')}} |
{{$user->semester->name}} |
{{trans('Students_trans.blood_type')}} |
{{$user->blood->name}} |
{{trans('Students_trans.birth_date')}} |
{{ $user->birth_date}} |
| {{trans('Students_trans.phone')}} |
{{ $user->phone}} |
{{trans('Students_trans.academic_year')}} |
{{ $user->universit_id }} |
|
|
|
|
| # |
{{trans('Students_trans.filename')}} |
{{trans('Students_trans.created_at')}} |
{{trans('Students_trans.Processes')}} |
@foreach($user->images as $attachment)
| {{$loop->iteration}} |
{{$attachment->filename}} |
{{$attachment->created_at->diffForHumans()}} |
{{trans('Students_trans.Download')}}
|
@include('pages.users.Delete_img')
@endforeach
@endsection
@section('js')
@toastr_js
@toastr_render
@endsection