@extends('layouts.admin.theme') @section("title", env("APP_NAME") . " :: Verificar Guia TurĂ­stico") @section('content')
@php $headLine = " Verificar Guia TurĂ­stico"; @endphp @include('components.buttons._headLineButtonsBackAdd', [ 'headLine' => __($headLine), 'routeBack' => 'admin.guias.index', 'routeBackParams' => [], 'nameBack' => __("Voltar"), ])
@include("errors.messageFlash") @csrf @method('post')
@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.guias.index' ] )
@endsection