@extends('layouts.app') @push('head-script') @endpush @section('page-title')

{{ __($pageTitle) }}

@lang('app.view') @lang('app.menu.contract')
@endsection @section('content')
{!! Form::open(['id'=>'createContract','class'=>'ajax-form','method'=>'PUT']) !!}

{{ $contract->subject }}

@if($contract->signature)

@lang('modules.contracts.signature')

@endif

@foreach($contract->renew_history as $history)
{{ $history->renewedBy->name }} : @lang('modules.contracts.renewedThisContract'): ({{ $history->created_at->timezone($global->timezone)->format($global->date_format) }} {{ $history->created_at->timezone($global->timezone)->format($global->time_format) }})
@lang('modules.contracts.newStartDate'): {{ $history->start_date->timezone($global->timezone)->format($global->date_format) }}
@lang('modules.contracts.newEndDate') : {{ $history->end_date->timezone($global->timezone)->format($global->date_format) }}
@lang('modules.contracts.newAmount') : {{ $history->amount }}
@endforeach

@lang('app.edit') @lang('app.menu.contract')

end_date==null) checked @endif name="no_enddate" id="no_enddate" type="checkbox">
@if($contract->company_logo) @else @endif
@lang('app.selectImage') @lang('app.change') @lang('app.remove')
@lang('app.back')
{!! Form::close() !!}
{{--Ajax Modal--}} {{--Ajax Modal Ends--}} @endsection @push('footer-script') @endpush