@extends('layouts.app') @push('head') @endpush @section('content')
@csrf @method('PUT')

Editar Contacto

@error('funcionario_id')
{{ $message }}
@endif
@if($errors->has('nombre_completo'))
{{ $errors->first('nombre_completo') }}
@endif
@if($errors->has('cargo'))
{{ $errors->first('cargo') }}
@endif
@if($errors->has('unidad'))
{{ $errors->first('unidad') }}
@endif
@if($errors->has('ubicacion'))
{{ $errors->first('ubicacion') }}
@endif
@if($errors->has('telefono'))
{{ $errors->first('telefono') }}
@endif
@if($errors->has('anexo'))
{{ $errors->first('anexo') }}
@endif
@if($errors->has('correo'))
{{ $errors->first('correo') }}
@endif
@endsection @push('post-scripts') @endpush