@extends('layouts.admin.theme') @section('title', env('APP_NAME') . ' :: ' . __('Verificar Empresa de Turismo')) @section('content')
@php $headLine = " " . __('Verificar Empresa de Turismo'); @endphp @include('components.buttons._headLineButtonsBackAdd', [ 'headLine' => __($headLine), 'routeBack' => 'admin.empresasDeTurismo.index', 'routeBackParams' => [], 'nameBack' => __('Voltar'), 'permission' => 'GERENCIADOR_DE_EMPRESAS_DE_TURISMO', ])
@include('errors.messageFlash') @csrf @method('post')
@include('components.inputs._inputType',[ 'for' => null, 'label' => __('CNPJ'), 'name' => 'cnpj', 'id' => null, 'required' => true, 'type' => null, 'old' => old('cnpj'), 'oninput' => "javascript:aplicarMascaraCNPJ(this)", 'readonly' => false, 'small' => null, ])
@include('components.buttons._backAndSend', [ 'textBack' => __('Voltar'), 'textSend' => __('Verificar'), 'routeBack' => 'admin.empresasDeTurismo.index', ])
@endsection