@extends('admin.admin') @section('content')
List

Product Option

@foreach ($options as $sl => $option) @endforeach
SL Name Price Action
{{ $sl + 1 }} {{ $option->name }} {{ $option->price }} X

Create Option

@csrf
@error('name') {{ $message }} @enderror
@error('price') {{ $message }} @enderror
@endsection