@extends('layouts.app')
@section('title', 'Adicionar Evento')
@push('styles-custom')
@endpush
@section('content')
@include('eventos.partials.form', [
'action' => route('eventos.store'),
'method' => null,
'title' => 'Adicionar Evento',
'subtitle' => 'Preencha os dados para cadastrar um novo evento.',
'evento' => null,
])
@endsection
@push('scripts-custom')
@include('eventos.scripts.custom-scripts')
@endpush