@extends('layouts.app') @section('content')
{{-- action="{{route('trabalho.store')}}" --}}
@csrf
{{-- @dd($errors->get('name.*')) --}} {{-- @dd($errors->has('cpf.*')) --}} {{-- @dd($errors->getBags()['default']->keys()) --}} @if (session('mensagem')) @endif @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@component('evento.formulario.projeto', ['grandeAreas' => $grandeAreas]) @endcomponent @component('evento.formulario.proponente') @endcomponent @component('evento.formulario.anexos') @endcomponent @component('evento.formulario.participantes', ['estados' => $estados, 'enum_turno' => $enum_turno, 'edital'=>$edital]) @endcomponent @component('evento.formulario.finalizar') @endcomponent
@component('componentes.participante', ['enum_turno' => $enum_turno,'estados' => $estados, ]) @endcomponent
@endsection @section('javascript') @endsection