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