@extends('layouts.parent.app')
@section('content')
Velkommen til Fritidskortet
{{ucfirst(Auth::user()->firstname)}} {{ucfirst(Auth::user()->lastname)}}
{{ucfirst(Auth::user()->address)}}
E-post : {{Auth::user()->email}}
Telefon : {{Auth::user()->phone}}
@php
$id_token=Session::get('id_token');
$link=config('idPort.API_URL')."/endsession?id_token_hint=".$id_token."&post_logout_redirect_uri=https://demo.fritidskortet.app/";
@endphp
Logg ut
{{--
Logg ut
--}}
@if(session('flash_success'))
×
{{ session('flash_success') }}
@endif
@if(session('flash_warning'))
×
{{ session('flash_warning') }}
@endif
VADSØ KOMMUNE
{{ucfirst(Auth::user()->firstname)}} {{ucfirst(Auth::user()->lastname)}}
Velg profil
@if(Session::get('user_age') >= 22)
@elseif(Session::get('user_age') < 22 && Session::get('child_login') == 1)
@endif
Registrer dine barn her
Legg til et barn
Her kan du legge til dine barn hvis du er forelder, eller deg selv hvis du er fylt 22år (eller fyller 22 år inneværende år)
REGISTRER DEG SELV HER
Her kan du legge til deg selv hvis du er mellom 16 og 18 år. Du har da rett til å administrere Fritidskortet på egen hånd.
{{-- Error message popup --}}
{{-- End Error message popup --}}
@endsection
@section('script')
@endsection