{{ __('Career') }}
{{-- --}}

{{ __('Current Job Openings') }}

{{ __('looking for energetic and passionate team members to develop their careers in a caring and supportive environment') }}

@foreach ($careers as $career)
{{ $career->name }}
@if ($career->description)
{!! $career->description ?? '' !!}
@endif @if ($career->expire_on)

{{ __('Expires on') . ':' . $career->expire_on }}

@endif @if ($career->description)
@livewire('job-applicant-form',['career'=>$career])
@endif
@endforeach