@if($data->Order->amount > $data->Order->paid_amount)
@t('Warning, the order is not paid in full')
@endif
{!! Form::label('data[first_name]', t('First Name')) !!} {!! Form::text( 'data[first_name]', $data->first_name ) !!}
{!! Form::label('data[last_name]', t('Last Name')) !!} {!! Form::text( 'data[last_name]', $data->last_name ) !!}
{!! Form::label('data[email]', t('Email')) !!} {!! Form::email( 'data[email]', $data->email ) !!}
{!! Form::label('data[phone]', t('Phone')) !!} {!! Form::text( 'data[phone]', $data->phone ) !!}

{!! Form::label('data[checksum]', t('Code')) !!} {!! Form::text( 'data[checksum]', $data->checksum ) !!}