|
|
|
@ -0,0 +1,327 @@ |
|
|
|
<div> |
|
|
|
<div class="bg-white shadow overflow-hidden sm:rounded-lg"> |
|
|
|
|
|
|
|
<div class="flex items-center px-4 py-5 border-b border-gray-200 sm:px-6"> |
|
|
|
|
|
|
|
<div class="flex-shrink-0 h-16 w-16"> |
|
|
|
<img class="h-16 w-16 rounded-full" src="https://images.unsplash.com/photo-1472099645785-5658abf4ff4e?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=facearea&facepad=2&w=256&h=256&q=80" alt="" /> |
|
|
|
</div> |
|
|
|
|
|
|
|
<div class="ml-4"> |
|
|
|
<h2 class="text-lg leading-6 font-medium text-gray-900"> |
|
|
|
{{ $associate->name }} |
|
|
|
</h2> |
|
|
|
<p class="mt-1 max-w-2xl text-sm leading-5 text-gray-500"> |
|
|
|
{{ $associate->email }} |
|
|
|
</p> |
|
|
|
</div> |
|
|
|
|
|
|
|
</div> |
|
|
|
|
|
|
|
<div> |
|
|
|
<dl> |
|
|
|
|
|
|
|
<div class="bg-white px-4 py-5 sm:grid sm:grid-cols-3 sm:gap-4 sm:px-6"> |
|
|
|
<dt class="text-sm leading-5 font-medium text-gray-500"> |
|
|
|
ID |
|
|
|
</dt> |
|
|
|
<dd class="mt-1 text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2"> |
|
|
|
{{ $associate->id }} |
|
|
|
</dd> |
|
|
|
</div> |
|
|
|
|
|
|
|
<div class="bg-gray-50 px-4 py-5 sm:grid sm:grid-cols-3 sm:gap-4 sm:px-6"> |
|
|
|
<dt class="text-sm leading-5 font-medium text-gray-500"> |
|
|
|
{{ __('associates.attributes.category') }} |
|
|
|
</dt> |
|
|
|
<dd class="mt-1 text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2"> |
|
|
|
{{ __('associate_categories.' . $associate->category->key) }} |
|
|
|
</dd> |
|
|
|
</div> |
|
|
|
|
|
|
|
<div class="bg-white px-4 py-5 sm:grid sm:grid-cols-3 sm:gap-4 sm:px-6"> |
|
|
|
<dt class="text-sm leading-5 font-medium text-gray-500"> |
|
|
|
{{ __('associates.attributes.nature') }} |
|
|
|
</dt> |
|
|
|
<dd class="mt-1 text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2"> |
|
|
|
{{ __('associate_natures.' . $associate->nature->key) }} |
|
|
|
</dd> |
|
|
|
</div> |
|
|
|
|
|
|
|
<div class="bg-gray-50 px-4 py-5 sm:grid sm:grid-cols-3 sm:gap-4 sm:px-6"> |
|
|
|
<dt class="text-sm leading-5 font-medium text-gray-500"> |
|
|
|
{{ __('associates.attributes.type') }} |
|
|
|
</dt> |
|
|
|
<dd class="mt-1 text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2"> |
|
|
|
{{ __('associate_types.' . $associate->type->key) }} |
|
|
|
</dd> |
|
|
|
</div> |
|
|
|
|
|
|
|
<div class="bg-white px-4 py-5 sm:grid sm:grid-cols-3 sm:gap-4 sm:px-6"> |
|
|
|
<dt class="text-sm leading-5 font-medium text-gray-500"> |
|
|
|
{{ __('associates.attributes.nature') }} |
|
|
|
</dt> |
|
|
|
<dd class="mt-1 text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2"> |
|
|
|
{{ $associate->birthday->format('d/m/Y') }} |
|
|
|
</dd> |
|
|
|
</div> |
|
|
|
|
|
|
|
<div class="bg-gray-50 px-4 py-5 sm:grid sm:grid-cols-3 sm:gap-4 sm:px-6"> |
|
|
|
<dt class="text-sm leading-5 font-medium text-gray-500"> |
|
|
|
{{ __('associates.attributes.name') }} |
|
|
|
</dt> |
|
|
|
<dd class="mt-1 text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2"> |
|
|
|
{{ $associate->name }} |
|
|
|
</dd> |
|
|
|
</div> |
|
|
|
|
|
|
|
<div class="bg-white px-4 py-5 sm:grid sm:grid-cols-3 sm:gap-4 sm:px-6"> |
|
|
|
<dt class="text-sm leading-5 font-medium text-gray-500"> |
|
|
|
{{ __('associates.attributes.birthday') }} |
|
|
|
</dt> |
|
|
|
<dd class="mt-1 text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2"> |
|
|
|
{{ $associate->birthday->format('d/m/Y') }} |
|
|
|
</dd> |
|
|
|
</div> |
|
|
|
|
|
|
|
<div class="bg-gray-50 px-4 py-5 sm:grid sm:grid-cols-3 sm:gap-4 sm:px-6"> |
|
|
|
<dt class="text-sm leading-5 font-medium text-gray-500"> |
|
|
|
{{ __('associates.attributes.profile.gender') }} |
|
|
|
</dt> |
|
|
|
<dd class="mt-1 text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2"> |
|
|
|
{{ $associate->profile['gender'] }} |
|
|
|
</dd> |
|
|
|
</div> |
|
|
|
|
|
|
|
<div class="bg-white px-4 py-5 sm:grid sm:grid-cols-3 sm:gap-4 sm:px-6"> |
|
|
|
<dt class="text-sm leading-5 font-medium text-gray-500"> |
|
|
|
{{ __('associates.attributes.document.type') }} |
|
|
|
</dt> |
|
|
|
<dd class="mt-1 text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2"> |
|
|
|
{{ $associate->document['type'] }} |
|
|
|
</dd> |
|
|
|
</div> |
|
|
|
|
|
|
|
<div class="bg-gray-50 px-4 py-5 sm:grid sm:grid-cols-3 sm:gap-4 sm:px-6"> |
|
|
|
<dt class="text-sm leading-5 font-medium text-gray-500"> |
|
|
|
{{ __('associates.attributes.document.number') }} |
|
|
|
</dt> |
|
|
|
<dd class="mt-1 text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2"> |
|
|
|
{{ $associate->document['number'] }} |
|
|
|
</dd> |
|
|
|
</div> |
|
|
|
|
|
|
|
<div class="bg-white px-4 py-5 sm:grid sm:grid-cols-3 sm:gap-4 sm:px-6"> |
|
|
|
<dt class="text-sm leading-5 font-medium text-gray-500"> |
|
|
|
{{ __('associates.attributes.profile.scholarity') }} |
|
|
|
</dt> |
|
|
|
<dd class="mt-1 text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2"> |
|
|
|
{{ $associate->profile['scholarity'] }} |
|
|
|
</dd> |
|
|
|
</div> |
|
|
|
|
|
|
|
<div class="bg-gray-50 px-4 py-5 sm:grid sm:grid-cols-3 sm:gap-4 sm:px-6"> |
|
|
|
<dt class="text-sm leading-5 font-medium text-gray-500"> |
|
|
|
{{ __('associates.attributes.address.country') }} |
|
|
|
</dt> |
|
|
|
<dd class="mt-1 text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2"> |
|
|
|
{{ $associate->address['country'] }} |
|
|
|
</dd> |
|
|
|
</div> |
|
|
|
|
|
|
|
<div class="bg-white px-4 py-5 sm:grid sm:grid-cols-3 sm:gap-4 sm:px-6"> |
|
|
|
<dt class="text-sm leading-5 font-medium text-gray-500"> |
|
|
|
{{ __('associates.attributes.address.postcode') }} |
|
|
|
</dt> |
|
|
|
<dd class="mt-1 text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2"> |
|
|
|
{{ $associate->address['postcode'] }} |
|
|
|
</dd> |
|
|
|
</div> |
|
|
|
|
|
|
|
<div class="bg-gray-50 px-4 py-5 sm:grid sm:grid-cols-3 sm:gap-4 sm:px-6"> |
|
|
|
<dt class="text-sm leading-5 font-medium text-gray-500"> |
|
|
|
{{ __('associates.attributes.address.street') }} |
|
|
|
</dt> |
|
|
|
<dd class="mt-1 text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2"> |
|
|
|
{{ $associate->address['street'] }} |
|
|
|
</dd> |
|
|
|
</div> |
|
|
|
|
|
|
|
<div class="bg-white px-4 py-5 sm:grid sm:grid-cols-3 sm:gap-4 sm:px-6"> |
|
|
|
<dt class="text-sm leading-5 font-medium text-gray-500"> |
|
|
|
{{ __('associates.attributes.address.number') }} |
|
|
|
</dt> |
|
|
|
<dd class="mt-1 text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2"> |
|
|
|
{{ $associate->address['number'] }} |
|
|
|
</dd> |
|
|
|
</div> |
|
|
|
|
|
|
|
<div class="bg-gray-50 px-4 py-5 sm:grid sm:grid-cols-3 sm:gap-4 sm:px-6"> |
|
|
|
<dt class="text-sm leading-5 font-medium text-gray-500"> |
|
|
|
{{ __('associates.attributes.address.complement') }} |
|
|
|
</dt> |
|
|
|
<dd class="mt-1 text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2"> |
|
|
|
{{ $associate->address['complement'] }} |
|
|
|
</dd> |
|
|
|
</div> |
|
|
|
|
|
|
|
<div class="bg-white px-4 py-5 sm:grid sm:grid-cols-3 sm:gap-4 sm:px-6"> |
|
|
|
<dt class="text-sm leading-5 font-medium text-gray-500"> |
|
|
|
{{ __('associates.attributes.address.neighbourhood') }} |
|
|
|
</dt> |
|
|
|
<dd class="mt-1 text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2"> |
|
|
|
{{ $associate->address['neighbourhood'] }} |
|
|
|
</dd> |
|
|
|
</div> |
|
|
|
|
|
|
|
<div class="bg-gray-50 px-4 py-5 sm:grid sm:grid-cols-3 sm:gap-4 sm:px-6"> |
|
|
|
<dt class="text-sm leading-5 font-medium text-gray-500"> |
|
|
|
{{ __('associates.attributes.address.city') }} |
|
|
|
</dt> |
|
|
|
<dd class="mt-1 text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2"> |
|
|
|
{{ $associate->address['city'] }} |
|
|
|
</dd> |
|
|
|
</div> |
|
|
|
|
|
|
|
<div class="bg-white px-4 py-5 sm:grid sm:grid-cols-3 sm:gap-4 sm:px-6"> |
|
|
|
<dt class="text-sm leading-5 font-medium text-gray-500"> |
|
|
|
{{ __('associates.attributes.address.state') }} |
|
|
|
</dt> |
|
|
|
<dd class="mt-1 text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2"> |
|
|
|
{{ $associate->address['state'] }} |
|
|
|
</dd> |
|
|
|
</div> |
|
|
|
|
|
|
|
<div class="bg-gray-50 px-4 py-5 sm:grid sm:grid-cols-3 sm:gap-4 sm:px-6"> |
|
|
|
<dt class="text-sm leading-5 font-medium text-gray-500"> |
|
|
|
{{ __('associates.attributes.profile.phone') }} |
|
|
|
</dt> |
|
|
|
<dd class="mt-1 text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2"> |
|
|
|
{{ $associate->profile['phone'] }} |
|
|
|
</dd> |
|
|
|
</div> |
|
|
|
|
|
|
|
<div class="bg-white px-4 py-5 sm:grid sm:grid-cols-3 sm:gap-4 sm:px-6"> |
|
|
|
<dt class="text-sm leading-5 font-medium text-gray-500"> |
|
|
|
{{ __('associates.attributes.email') }} |
|
|
|
</dt> |
|
|
|
<dd class="mt-1 text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2"> |
|
|
|
{{ $associate->email }} |
|
|
|
</dd> |
|
|
|
</div> |
|
|
|
|
|
|
|
<div class="bg-gray-50 px-4 py-5 sm:grid sm:grid-cols-3 sm:gap-4 sm:px-6"> |
|
|
|
<dt class="text-sm leading-5 font-medium text-gray-500"> |
|
|
|
{{ __('associates.attributes.profile.secondary_emails') }} |
|
|
|
</dt> |
|
|
|
<dd class="mt-1 text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2"> |
|
|
|
{{ $associate->profile['secondary_emails'] }} |
|
|
|
</dd> |
|
|
|
</div> |
|
|
|
|
|
|
|
<div class="bg-white px-4 py-5 sm:grid sm:grid-cols-3 sm:gap-4 sm:px-6"> |
|
|
|
<dt class="text-sm leading-5 font-medium text-gray-500"> |
|
|
|
{{ __('associates.attributes.profile.website') }} |
|
|
|
</dt> |
|
|
|
<dd class="mt-1 text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2"> |
|
|
|
{{ $associate->profile['website'] }} |
|
|
|
</dd> |
|
|
|
</div> |
|
|
|
|
|
|
|
<div class="bg-gray-50 px-4 py-5 sm:grid sm:grid-cols-3 sm:gap-4 sm:px-6"> |
|
|
|
<dt class="text-sm leading-5 font-medium text-gray-500"> |
|
|
|
{{ __('associates.attributes.profile.social') }} |
|
|
|
</dt> |
|
|
|
<dd class="mt-1 text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2"> |
|
|
|
{{ $associate->profile['social'] }} |
|
|
|
</dd> |
|
|
|
</div> |
|
|
|
|
|
|
|
<div class="bg-white px-4 py-5 sm:grid sm:grid-cols-3 sm:gap-4 sm:px-6"> |
|
|
|
<dt class="text-sm leading-5 font-medium text-gray-500"> |
|
|
|
{{ __('associates.attributes.discussion') }} |
|
|
|
</dt> |
|
|
|
<dd class="mt-1 text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2"> |
|
|
|
{{ $associate->discussion }} |
|
|
|
</dd> |
|
|
|
</div> |
|
|
|
|
|
|
|
<div class="bg-gray-50 px-4 py-5 sm:grid sm:grid-cols-3 sm:gap-4 sm:px-6"> |
|
|
|
<dt class="text-sm leading-5 font-medium text-gray-500"> |
|
|
|
{{ __('associates.attributes.profile.expectation') }} |
|
|
|
</dt> |
|
|
|
<dd class="mt-1 text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2"> |
|
|
|
{{ $associate->profile['expectation'] }} |
|
|
|
</dd> |
|
|
|
</div> |
|
|
|
|
|
|
|
<div class="bg-white px-4 py-5 sm:grid sm:grid-cols-3 sm:gap-4 sm:px-6"> |
|
|
|
<dt class="text-sm leading-5 font-medium text-gray-500"> |
|
|
|
{{ __('associates.attributes.profile.bike_use') }} |
|
|
|
</dt> |
|
|
|
<dd class="mt-1 text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2"> |
|
|
|
{{ $associate->profile['bike_use'] }} |
|
|
|
</dd> |
|
|
|
</div> |
|
|
|
|
|
|
|
<div class="bg-gray-50 px-4 py-5 sm:grid sm:grid-cols-3 sm:gap-4 sm:px-6"> |
|
|
|
<dt class="text-sm leading-5 font-medium text-gray-500"> |
|
|
|
{{ __('associates.attributes.profile.org_participation') }} |
|
|
|
</dt> |
|
|
|
<dd class="mt-1 text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2"> |
|
|
|
{{ $associate->profile['org_participation'] }} |
|
|
|
</dd> |
|
|
|
</div> |
|
|
|
|
|
|
|
<div class="bg-white px-4 py-5 sm:grid sm:grid-cols-3 sm:gap-4 sm:px-6"> |
|
|
|
<dt class="text-sm leading-5 font-medium text-gray-500"> |
|
|
|
{{ __('associates.attributes.profile.bike_activities') }} |
|
|
|
</dt> |
|
|
|
<dd class="mt-1 text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2"> |
|
|
|
{{ $associate->profile['bike_activities'] }} |
|
|
|
</dd> |
|
|
|
</div> |
|
|
|
|
|
|
|
<div class="bg-white px-4 py-5 sm:grid sm:grid-cols-3 sm:gap-4 sm:px-6"> |
|
|
|
<dt class="text-sm leading-5 font-medium text-gray-500"> |
|
|
|
{{ __('associates.attributes.contribution') }} |
|
|
|
</dt> |
|
|
|
<dd class="mt-1 text-sm leading-5 text-gray-900 sm:mt-0 sm:col-span-2"> |
|
|
|
<ul class="border border-gray-200 rounded-md"> |
|
|
|
<li class="pl-3 pr-4 py-3 flex items-center justify-between text-sm leading-5"> |
|
|
|
<div class="w-0 flex-1 flex items-center"> |
|
|
|
<svg class="flex-shrink-0 h-5 w-5 text-gray-400" viewBox="0 0 20 20" fill="currentColor"> |
|
|
|
<path fill-rule="evenodd" d="M8 4a3 3 0 00-3 3v4a5 5 0 0010 0V7a1 1 0 112 0v4a7 7 0 11-14 0V7a5 5 0 0110 0v4a3 3 0 11-6 0V7a1 1 0 012 0v4a1 1 0 102 0V7a3 3 0 00-3-3z" clip-rule="evenodd"/> |
|
|
|
</svg> |
|
|
|
<span class="ml-2 flex-1 w-0 truncate"> |
|
|
|
resume_back_end_developer.pdf |
|
|
|
</span> |
|
|
|
</div> |
|
|
|
<div class="ml-4 flex-shrink-0"> |
|
|
|
<a href="#" class="font-medium text-indigo-600 hover:text-indigo-500 transition duration-150 ease-in-out"> |
|
|
|
Download |
|
|
|
</a> |
|
|
|
</div> |
|
|
|
</li> |
|
|
|
<li class="border-t border-gray-200 pl-3 pr-4 py-3 flex items-center justify-between text-sm leading-5"> |
|
|
|
<div class="w-0 flex-1 flex items-center"> |
|
|
|
<svg class="flex-shrink-0 h-5 w-5 text-gray-400" viewBox="0 0 20 20" fill="currentColor"> |
|
|
|
<path fill-rule="evenodd" d="M8 4a3 3 0 00-3 3v4a5 5 0 0010 0V7a1 1 0 112 0v4a7 7 0 11-14 0V7a5 5 0 0110 0v4a3 3 0 11-6 0V7a1 1 0 012 0v4a1 1 0 102 0V7a3 3 0 00-3-3z" clip-rule="evenodd"/> |
|
|
|
</svg> |
|
|
|
<span class="ml-2 flex-1 w-0 truncate"> |
|
|
|
coverletter_back_end_developer.pdf |
|
|
|
</span> |
|
|
|
</div> |
|
|
|
<div class="ml-4 flex-shrink-0"> |
|
|
|
<a href="#" class="font-medium text-indigo-600 hover:text-indigo-500 transition duration-150 ease-in-out"> |
|
|
|
Download |
|
|
|
</a> |
|
|
|
</div> |
|
|
|
</li> |
|
|
|
</ul> |
|
|
|
</dd> |
|
|
|
</div> |
|
|
|
</dl> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</div> |