{{-- Start of Selection --}} @extends('layouts.dashboard') @section('content')

{{ isset($tipoLicencia) ? 'Editar Tipo de Licencia' : 'Nuevo Tipo de Licencia' }}

@if($errors->any())
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf @if(isset($tipoLicencia)) @method('PUT') @endif
@error('tipoLicencia')

{{ $message }}

@enderror
Cancelar
@endsection {{-- End of Selection --}}