@extends('layouts.admin') @section('content')

Adicionar Evento

@if(Session::has('success'))
{{ Session::get('success') }} @php Session::forget('success'); @endphp
@endif @if(Session::has('error'))
{{ Session::get('error') }} @php Session::forget('error'); @endphp
@endif
@if($errors->has('informacoes'))

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@endif
@endsection