@extends('layouts.admin.theme') @section("title", env("APP_NAME") . " :: Verificar Músico - Credenciamento") @section('content')
@php $headLine = " Verificar Músico - Credenciamento"; @endphp @include('components.buttons._headLineButtonsBackAdd', [ 'headLine' => __($headLine), 'routeBack' => 'admin.cultura.credenciamentoMusicos.index', 'routeBackParams' => [], 'nameBack' => __("Voltar"), 'routeAdd' => 'admin.cultura.credenciamentoMusicos.verify', 'routeAddParams' => [], 'nameAdd' => __('Novo paciente'), "permission" => "GERENCIADOR_CREDENCIAMENTO_DE_MUSICOS", ])
@include("errors.messageFlash")
@csrf
@include('components.inputs._inputType',[ "for" => null, "label" => "CPF", "name" => "cpf", "id" => null, "required" => true, "type" => null, "old" => old('cpf'), "oninput" => "javascript:aplicarMascaraCPF(this)", "readonly" => false, "small" => null, ])
@include('components.buttons._backAndSend', [ 'textBack' => 'Voltar', 'textSend' => 'Verificar', 'routeBack' => 'admin.cultura.credenciamentoMusicos.verify' ])
@endsection