@include('shared.alerts')
{{ __('Edit product') }}
@method('PUT') @csrf @include('shared.input', ['label' => __('Name'), 'name' => 'name', 'value' => old('name', $product->name)])
@include('shared.input', ['label' => __('Description'), 'name' => 'description', 'value' => old('description', $product->description)]) @include('shared.input', ['label' => __('Short description'), 'name' => 'short_description', 'value' => old('short_description', $product->short_description)]) @include('shared.input', ['label' => __('Price'), 'name' => 'price', 'value' => old('price', $product->price), 'type' => 'number']) @include('shared.input', ['label' => __('Extra driving lessons'), 'name' => 'extra_lessons', 'value' => old('extra_lessons', $product->extra_lessons), 'type' => 'number']) @include('shared.input', ['label' => __('Image'), 'name' => 'image', 'value' => '', 'type' => 'file']) @if($product->image)

{{ __('Uploading a new image will overwrite the current one') }}

@endif
{{ __('Delete product') }}
@method('DELETE') @csrf