@extends('layouts.dashboard') @section('title', $hero->exists ? 'Edit hero' : 'Add hero') @section('content')

{{ $hero->exists ? 'Edit hero' : 'Add hero' }}

@csrf @if ($hero->exists) @method('PUT') @endif
@if ($hero->image_path) @endif
@error('live')

{{ $message }}

@enderror @endsection