User Profile With Work History - Just Like LinkedIn

Filament 3
Also available in Filament 4/5 version

When users can fill out their own profiles, it's often with custom fields. In this example, we tried to recreate the LinkedIn work experience form.

FilamentExamples ThumbBase (39)

Get the Source Code:

Only This Example

$9

One-time payment

Full source code for User Profile With Work History - Just Like LinkedIn
Downloadable ZIP file with the source code
Lifetime access to this example
GitHub Sign in with GitHub to buy

Sign in first, then complete your $9 checkout.

Best value — all 172 examples

FilamentExamples Membership

$99 /year
or
$199 lifetime
Access to code of all 172 examples
Future new examples and updates included
FilaCheck Pro package licence included
MCP server included
View membership plans

30-day money-back guarantee

How it works

First, we create a custom Filament page and use it to edit the profile page. This page must extend the base Filament edit profile page.

app/Filament/Pages/EditProfile.php:

use Filament\Pages\Auth\EditProfile as BaseEditProfile;
 
class EditProfile extends BaseEditProfile
{
protected static string $view = 'filament.pages.profile';
}

We must enable the profile feature in the Panel Provider and provide our created EditProfile page. We also set the page so that the simple page layout is not used.

The FULL tutorial is available after the purchase: in the Readme file of the official repository you would get invited to.