@extends('layouts.app') @section('title', 'Editar Evento') @push('styles-custom') @endpush @section('content')
@include('eventos.partials.form', [ 'action' => route('eventos.update', $evento->id), 'method' => 'PUT', 'title' => 'Editar Evento', 'subtitle' => 'Atualize os dados do evento.', 'evento' => $evento, ])
@endsection @push('scripts-custom') @include('eventos.scripts.custom-scripts') @endpush