User Profile

@if(isset($developer))

{{ $developer->full_name }}, Profile

@if(Session::has('message'))

{{ Session::get('message') }}
@endif

Personal Info

  • Address: {{ $developer->address }}, {{ $developer->city }}, {{ $developer->state }}, {{ $developer->country }}
  • Job Title: {{ $developer->job_title }}
  • DOB: {{ $developer->dob }}
  • Brief Intro: {{ $developer->brief_intro }}
Edit Profile

Skills

Skills

    @if(count($devSkills)) @foreach($devSkills as $skill)
  • {{ $skill->skill_name }} Edit | Delete
  • @endforeach @else No Skill added @endif

Education

    @if(count($devEdu)) @foreach($devEdu as $edu)
  • {{ $edu->institution }}      {{ $edu->date_start }} - {{ $edu->date_end }}     Edit | Delete

    Field of Study: {{ $edu->field_of_study }}
    Qualitification/Degree: {{ $edu->degree }}
  • @endforeach @else No Education Added @endif

Experience

    @if(count($devExp)) @foreach($devExp as $exp)
  • {{ $exp->company }}   {{ $exp->date_start_month }}, {{ $exp->date_start_year }} - @if($exp->currently_working_here == "yes") Currently Here @else {{ $exp->date_end_month }}, {{ $exp->date_end_year }} @endif Edit | Delete

    Job Title: {{ $exp->job_title }}
    Job Location: {{ $exp->location }}
    Job Description: {{ $exp->description }}
  • @endforeach @else No Experience Added @endif
@endif