@extends('admin.layout.app') @section('content')
{{-- Card --}}

Edit Playtime

@csrf @method('PUT') {{-- Category Name --}}
@if ($errors->has('title')) {{ $errors->first('title') }} @endif
{{-- Description --}}
@if ($errors->has('description')) {{ $errors->first('description') }} @endif
{{-- Current Playtime Image --}} @if (isset($playtime->image))
{{ $playtime->image_alt ?? 'Playtime Image' }}
@endif {{-- Upload New Playtime Image --}}
@if ($errors->has('image')) {{ $errors->first('image') }} @endif
Recommended size: 1200 x 800px. Only jpg, png, jpeg allowed.
{{-- Submit --}}
{{-- /Card --}}
@endsection @push('scripts') @endpush