@extends('layouts.admin.theme') @section("title", env("APP_NAME") . " :: Credenciamento") @section('content')
@php $headLine = " Credenciamento"; @endphp @include('components.buttons._headLineButtonsBackAdd', [ 'headLine' => __($headLine), "permission" => "GERENCIADOR_CREDENCIAMENTO_DE_MUSICOS", ])
@include("errors.messageFlash") @include('components.modal._modelProfile')
@csrf @method('POST')
@include('components.inputs._selectType', [ "for" => "tipo_pessoa", "label" => "Tipo de Credenciamento", "name" => "tipo_pessoa", "required" => true, "readonly" => false, "options" => [ 'PF' => 'Pessoa Física', 'PJ' => 'Pessoa Jurídica', 'AMBOS' => 'Ambos' ], "selected" => old('tipo_pessoa', $musico->tipo_pessoa ?? 'PF'), "placeholder" => "Selecione...", "onchange" => "window.CredEmp.onTipoChange(this)" ])
{{ __("Anterior") }}
@endsection @push('scripts') @endpush