@extends('employee.employee-layouts.master') @section('content')
{{ auth()->user()->name }}

{{ @$all_profile->designation }}

{{__('ID')}} : {{ Auth::user()->id }}

{{ __('Full Name') }}

{{ auth()->user()->name }}

{{ __('Email') }}

{{ auth()->user()->email }}

{{ __('Mobile') }}

{{ @$all_profile->contact }}

{{__('Age')}}

{{ @$all_profile->age }}

{{ __('Emergency Contact') }}
{{ @$all_profile->emergency_contact }}

{{ __('Gender') }}
{{ @$all_profile->gender }}
{{ __('Joining Date') }}

{{ @$all_profile->joining_date }}

{{__('Present Address')}}
{{ @$all_profile->present_address }}

{{__('Permanent Address')}}
{{ @$all_profile->permanent_address }}

@if($all_profile->attachment != null) @foreach ($all_profile->attachment as $attachment)
{{ __(@$attachment['title'])}}
@endforeach @endif
@endsection @push('style') @endpush