@extends('layouts.app') @php $legal = json_decode(session('accountsetup.account.legal'), true); $sign = json_decode(session('accountsetup.account.sign'), true); @endphp @section('content')
@include('account.setup.header')
{{ __('Review & Sign') }}
{!! html_entity_decode($contract->fillTemplate($data))!!} @if($sign['contract']??false) @else {{__('I have reviewed the Contract')}} @endif
{!! html_entity_decode($gtnc->fillTemplate($data))!!} @if($sign['gtnc']??false) @else {{__('I have reviewed the General Terms & Conditions')}} @endif
@if(($sign['contract']??false)&&($sign['gtnc']??false))
@csrf
{{ __('Enter your password and sign the contract to start selling!')}}
@else @endif
@include('account.setup.account')
@endsection