@extends('layouts.app') @section('content')
@if(session('message'))
{{ session('message') }}
@endif
{{ __('Registrar nuevo Técnico') }}
Cancelar
@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
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
@endsection