@extends('layouts.main-layout') @section('title') {{ config('app.name') }} - Profile @endsection @section('content')

Profile - {{ $profile->client_firstName }} {{ $profile->client_lastName }}

@if($profile->client_expires_at != null)

{{ $profile->client_firstName }} {{ $profile->client_lastName }} account expires at: {{ $profile->client_expires_at }}

@endif
@csrf
@if($profile->client_expires_at != null) @if(strtotime(now()) > strtotime($profile->client_expires_at))
@endif @endif
@endsection