@php
$statusOptions = [
['label' => 'Active', 'value' => 1],
['label' => 'Inactive', 'value' => 0],
];
@endphp
@error('status')
@enderror
@php
$ratingOptions = [
['label' => '1 star', 'value' => 1],
['label' => '2 star', 'value' => 2],
['label' => '3 star', 'value' => 3],
['label' => '4 star', 'value' => 4],
['label' => '5 star', 'value' => 5],
];
@endphp
@error('rating')
@enderror