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