@extends('theme.layouts.home') @section('title', isset($seo) ? $seo->title : 'Teem') @section('description', isset($seo) ? $seo->description : 'Everything we do, we believe in empowering the small business community. The way we do that is by helping them run their business professionally through our online business management tool') @section('keywords', isset($seo) ? $seo->keywords : 'Teem') @section('content')
@include('theme.layouts.partials.loading')
@include('theme.home.tap-payment-page')

{{ trans('front_pages.pricing_page.pricing') }}

{{ trans('front_pages.pricing_page.pricing_content', ['days' => config('teamup.trial_period') ]) }}

@php \Session::set('discountOptions', ''); $planSub = ''; if(\Auth::check()){ if(\Auth::user()->plan == 'Free' && \Auth::user()->is_new_trial == 1){ $planSub = ''; }else{ $planSub = \Auth::user()->planSubscriptions(); if(!$planSub){ $planSub = \Auth::user()->planOldSubscription(); } } } $plan = $planSub ? $planSub->plan : 'trial'; @endphp
@section('footer') @include('theme.layouts.partials.landing-footer') @show
@include('theme.home.new-sign-up')
@endsection