@extends('layouts.dashboard') @section('title', 'Freelancer Profile') @section('content')

My Freelancer Profile

@if($user->profile_photo) user-profile-image @else user-profile-image @endif
{{ $user->name }}

{{ $profile->title ?? 'Freelancer' }}

Availability

@if(($profile->availability ?? 'available') == 'available') Available for work @else Not available @endif
@csrf
@csrf
Hold down Ctrl (Windows) or Command (Mac) to select multiple skills.
Add New Portfolio Item
@csrf
Your Portfolio
@forelse($portfolios as $item)
@if($item->url && !str_starts_with($item->url, 'http')) ... @elseif($item->url && str_starts_with($item->url, 'http'))

External Link
@else
No Image
@endif
{{ $item->title }}

{{ $item->description }}

@if($item->url && str_starts_with($item->url, 'http')) View @endif
@csrf @method('DELETE')
@empty

No portfolio items added yet.

@endforelse
@csrf
@endsection @section('scripts') @endsection