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

@lang($pageTitle)

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

{{ $contract->subject }} @lang('app.view') @lang('app.menu.contract')

@if($contract->signature)

Signature (Customer)

@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')

@lang('app.selectImage') @lang('app.change') @lang('app.remove')
{!! Form::close() !!} {{--Ajax Modal--}} {{--Ajax Modal Ends--}} @endsection @push('footer-script') @endpush