Your Profile Details

Logout
@if(Auth::user()->profile_picture) Profile Picture @else Default Avatar @endif
{{-- Validation Errors --}} @if ($errors->any())
@endif {{-- Success --}} @if(session('success'))
{{ session('success') }}
@endif {{-- Error --}} @if(session('error'))
{{ session('error') }}
@endif

Upload Profile Picture

@csrf

Available Job List

@forelse ($jobs as $index => $job) @empty @endforelse
# UUID Job Title Job Description Start Date End Date
{{ $index + 1 }} {{ $job->uuid }} {{ $job->job_title }} {{ $job->job_description }} {{ $job->start_date }} {{ $job->end_date }}
No records found.