@component('mail::message')
# A new user has submitted the Recruitment Form!
Here’s a summary of the information the user submitted:
First name: {{ $item->fname }}
Last name: {{ $item->lname }}
Email: {{ $item->email }}
Phone: {{ $item->phone }}
Company: {{ $item->company }}
Website: {{ $item->website }}
@if (!empty($item->targeted_specialties))
Targeted Specialties: {{ $item->targeted_specialties }}
@endif
@if (!empty($item->targeted_countries))
Targeted Countries: {{ $item->getLabelCountries() }}
@endif
@foreach(config('subscription.label') as $key => $label)
@if (isset($item->extra[$key]))
{{ $label }}: {{ $item->extra[$key] }}
@endif
@endforeach
@lang('Best Regards'),
{{ config('app.name') }} Team
@endcomponent