@extends('layouts.app') @section('content')
@if(session('message'))
{{ session('message') }}
@endif
{{ __('Datos del Técnico') }} {{$tecnico->name}} {{$tecnico->surname}}
Volver
@csrf
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('surname')) {{ $errors->first('surname') }} @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('telefono')) {{ $errors->first('telefono') }} @endif
@endsection