@extends('layout.padrao') @section('title', ' Contract Confirmation') @section('content') @if($errors->any())
@foreach($errors->all() as $error) {{ $error }}
@endforeach
@endif
{{ csrf_field() }}
@include('include.btn_registrar')
{!! Form::label('id', 'Trader Recap:', [ 'class' => 'col col-lg-6 col-sm-6 col-md-6 text-right m3 control-label']) !!} {!! Form::text('id', $register->id , ['class' => 'col col-lg-6 col-sm-6 col-md-6 form-control', 'disabled' => 'disabled']) !!}
{!! Form::label('contractsIssued', 'Contracts Issued', [ 'class' => 'w-100 control-label']) !!} {!! Form::select('contractsIssued', [null=>null,'Yes'=>'Yes', 'No'=>'No'], $register->contractsIssued, ['class' => 'form-control']) !!}
{!! Form::label('contractsSenttoBuyer', 'Contracts Sent To Buyer', [ 'class' => 'w-100 control-label']) !!} {!! Form::date('contractsSenttoBuyer', $register->contractsSenttoBuyer, ['class' => 'form-control', 'min' => '2019-01-01', 'max' => '2080-01-01']) !!}
{!! Form::label('signedContractReceived', 'Signed Contract Received', [ 'class' => 'w-100 control-label']) !!} {!! Form::select('signedContractReceived', [null=>null,'Yes'=>'Yes', 'No'=>'No'], $register->signedContractReceived, ['class' => 'signedContractReceived form-control']) !!}
{!! Form::label('signedContractReceivedOn', 'signed Contract Received On', [ 'class' => 'w-100 control-label']) !!} {!! Form::date('signedContractReceivedOn', $register->signedContractReceivedOn, ['class' => 'signedContractReceivedOn form-control', 'min' => '2019-01-01', 'max' => '2080-01-01']) !!}
{!! Form::label('CommentsContractConfirm', 'Comments Contract Confirm', [ 'class' => 'w-100 control-label']) !!} {!! Form::textarea('CommentsContractConfirm', $register->CommentsContractConfirm, ['class' => 'form-control', 'rows' => 3]) !!}
@endSection