{!! Form::open(['url' => action('GiftVoucherController@update', [$gift_voucher->id]), 'method' => 'PUT', 'id' => 'update_gift_voucher']) !!}
{!! Form::label('amount', ' Amount' . ':*') !!}
{!! Form::number('amount', $gift_voucher->amount, ['class' => 'form-control', 'required', 'placeholder' => 'Amount']) !!}
{!! Form::label('issuedDate', ' Issued Date' . ':*') !!}
{!! Form::date('issuedDate', $gift_voucher->issuedDate, ['class' => 'form-control', 'required', 'placeholder' => 'Issued Date']) !!}
{!! Form::label('expiryDate', ' Expiry Date' . ':*') !!}
{!! Form::date('expiryDate', $gift_voucher->expiryDate, ['class' => 'form-control', 'required', 'placeholder' => 'Expiry Date']) !!}
{!! Form::close() !!}