{!! Form::open(['url' => action('GiftVoucherController@store'), 'method' => 'post', 'id' => 'add_recruitment', 'enctype' => 'multipart/form-data']) !!}
{!! Form::label('amount', ' Amount' . ':*') !!}
{!! Form::number('amount', null, ['class' => 'form-control', 'required', 'placeholder' => 'Amount']) !!}
{!! Form::label('quantity', ' Quantity' . ':*') !!}
{!! Form::number('quantity', 1, ['class' => 'form-control', 'required', 'placeholder' => 'Quantity']) !!}
{!! Form::label('issuedDate', ' Issued Date' . ':*') !!}
{!! Form::date('issuedDate', null, ['class' => 'form-control', 'required', 'placeholder' => 'Issued Date']) !!}
{!! Form::label('expiryDate', ' Expiry Date' . ':*') !!}
{!! Form::date('expiryDate', null, ['class' => 'form-control', 'required', 'placeholder' => 'Expiry Date']) !!}
{!! Form::close() !!}