diff --git a/resources/views/avaliator-pad/create.blade.php b/resources/views/avaliator-pad/create.blade.php index 86515c7960e55522d4b58f1e9c07e9736ca032c8..fd55062aa542671e389a7ce25754ff645d228d9f 100644 --- a/resources/views/avaliator-pad/create.blade.php +++ b/resources/views/avaliator-pad/create.blade.php @@ -1,39 +1,5 @@ - -@php - dd('create update'); -@endphp - <div class="mb-3"> <h3 class="h3"> Cadastrar Avaliador (PDA) </h3> </div> -<form id="form-user_pad" action="{{ route('avaliator-pad_store') }}" method="POST"> - @method('POST') - @csrf - - @include('avaliator-pad.form', [ - 'pad' => $pad, - 'model' => $model, - 'users' => $users, - 'status' => $status, - ]) - - <div class="mt-1 text-end"> - <div class="modal-footer"> - @include('components.buttons.btn-save', [ - 'id' => 'btn_submit', - 'content' => 'Cadastrar', - ]) - - @include('components.buttons.btn-close_modal') - </div> - </div> - -</form> -@include('pad.components.scripts.ajaxValidationById', [ - 'btn_submit_id' => 'btn_submit', - 'form_id' => 'form-user_pad', - 'form_type' => 'create_and_update', - 'route' => route('avaliador-pad_ajax_validation'), -])