{{ __('In Case of Emergency') }}

{{ __('Store important emergency information here, such as emergency contacts, diagnoses, and medication. This can be shared with first responders or trusted people during a crisis.') }}
{{-- Crisis banner --}}

{{ __('I am in crisis.') }}
{{ __('I need help!') }}

{{-- Wat helpt in de rode zone --}}

{{ __('What helps me right now') }}

@if ($hasPlan && count($redHelps) > 0)
    @foreach ($redHelps as $i => $help)
  1. {{ $i + 1 }} {{ $help }}
  2. @endforeach
@elseif ($hasPlan)

{{ __('Nothing added yet for the red zone.') }}

{{ __('Set up your plan') }} → @else

{{ __("You haven't set up your crisis plan yet.") }}

{{ __('Set up your plan') }}
@endif
{{-- Wat helpt NIET --}} @if ($hasPlan && count($redHelpsNot) > 0)

{{ __('What does not help me') }}

    @foreach ($redHelpsNot as $item)
  • {{ $item }}
  • @endforeach
@endif {{-- ICE contacten --}}

{{ __('ICE contacts') }}

@auth {{ __('Edit ICE contacts') }} @endauth
@if ($contacts->isEmpty())

{{ __('No ICE contacts added yet.') }}

@auth {{ __('Add ICE contact') }} @endauth
@else
@foreach ($contacts as $contact)
{{ $contact->name }} @if ($contact->relation) {{ $contact->relation }} @endif
@if ($contact->note)

{{ $contact->note }}

@endif
@if ($contact->phone) {{ __('Call') }} @endif @if ($contact->email) {{ __('Send email') }} @endif
@endforeach
@endif
@push('bottom-bar-buttons') {{-- @auth {{ __('Dashboard') }} @endauth --}} @auth {{ __('Edit ICE contacts') }} @endauth {{ __('My plan') }} @endpush