@layout('../../layouts/dashboard')
@set('title', 'Confirmation paypal')
@section('body')

<div class="grid-menu">
  @include('../../partials/dashboard/messages')
  <form method="POST" id="loginForm" action="{{ route('auth.update.paypalconfirmation') }}">
    {{  csrfField() }}
    <input name="id" type="hidden" value="{{ data.id }}">
          <table class="table table-hover dataTable table-striped width-full" id="gaTable">
              <thead>
                  <tr>
                      <th style="text-align:center;" colspan="3">
                         <h2>Comprovante</h2>
                      </th>
                  </tr>
              </thead>
              <tbody>
                      <tr>
                          <td colspan="12">
                              <span>
                                  <div id="emailTypeBlock">
                                      <div class="input-container">
                                          <label class="floating-label">Faça upload da imagem em um servidor externo e cole na caixa de texto abaixo. <a href="https://imgur.com" target="_blank">Clique Aqui</a>  </br>  </br></label>
                                         </br>
                                        
                                         
                                          @if(flashMessages.has('errors.content'))
                                            <small class="text-danger">{{ flashMessages.get('errors.confirmation') }}</small>
                                          @endif
                                      </div>
                                  </div>
                              </span>
                          </td>
                      </tr>


                      <tr>
                          <td colspan="3">
                              <div class="form-wrapper" style="border: none;text-align:center;">
                                  <button type="submit" class="btn-default">
                                      Confirmar
                                  </button>
                              </div>
                          </td>
                      </tr>
              </tbody>
          </table>
                  </form>
  </div>
@end
