@extends('layouts.onboarding') @section('styles') @endsection @section('content') @include('onboarding.steps', ['currentStep' => 'contract']) @include('partials.messages') @if(session('error'))
{{ session('error') }}
@endif @if($contract)
@csrf

{{ $contract->title }}


This Contract is entered into on {{ \Carbon\Carbon::parse($contract->start_date)->format('F j, Y')}}, for a total period of {{ $contract->number_of_days }} days, with an address of CPHRM , and with an address of {{ Auth::user()->name }} collectively referred to as the "Parties".

{!! $contract->description !!}
Previous
@else
We're sorry, but there is no contract available for your role at this time.

Please ensure:

@endif @endsection @section('scripts') @endsection