@extends('default.layout') @section('content')

Nova atividade para evento {{$evento->nome}}

@csrf
@if($errors->has('responsavel_nome'))
{{ $errors->first('responsavel_nome') }}
@endif
@if($errors->has('responsavel_telefone'))
{{ $errors->first('responsavel_telefone') }}
@endif
@if($errors->has('crianca_nome'))
{{ $errors->first('crianca_nome') }}
@endif
@if($errors->has('inicio'))
{{ $errors->first('inicio') }}
@endif
@if(sizeof($categorias) > 1)

Categorias

@foreach($categorias as $key => $c) @endforeach
@endif

Serviços

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

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

@endif
@if($errors->has('fim'))
{{ $errors->first('fim') }}
@endif

Total: R$ 0

@endsection