@extends('painel-admin.menu') @section('title', 'Funcionario') @section('content')
@method('PUT') @csrf @if(session('error'))
{{ session('error') }}
@endif

Alteração de Funcionario

Voltar


@if ($errors->has('usuario'))

{{ $errors->first('usuario') }}

@endif
@if ($errors->has('nome'))

{{ $errors->first('nome') }}

@endif
@if ($errors->has('email'))

{{ $errors->first('email') }}

@endif
@if ($errors->has('senha'))

{{ $errors->first('senha') }}

@endif
@endsection