@extends('admin.layouts.app') @section('title', 'Edit Event Type') @section('page_title', 'Event Types') @section('content')

Edit Event Type

Update {{ $eventType->name }} information.

Back to List
@csrf @method('PUT') @include('admin.event-types._form', [ 'eventType' => $eventType, 'submitText' => 'Update Event Type', ])
@if($eventType->featured_image) {{-- Keep this form outside the main update form. --}} @endif @endsection