@extends('layouts.partials.master') @section('title', 'Editar colaborador') @push('styles') @endpush @section('content')
@include('layouts.components.section-title', ['title' => 'Editar colaborador']) Voltar
@include('layouts.components.alerts')
@csrf @method('PUT')
@if ($errors->has('name'))
{{ $errors->first('name') }}
@endif
@if ($errors->has('status'))
{{ $errors->first('status') }}
@endif
@endsection