Forms\Components\Fieldset::make('Contact Information')
->schema([
Forms\Components\TextInput::make('email')
->requiredWithoutAll('line', 'whatsapp')
->email(),
Forms\Components\TextInput::make('line')
->requiredWithoutAll('email', 'whatsapp'),
Forms\Components\TextInput::make('whatsapp')
->requiredWithoutAll('email', 'line'),
])
->columns(3),
Forms\Components\Fieldset::make('Contact Information')
->schema([
Forms\Components\TextInput::make('email')
->requiredWithoutAll('line', 'whatsapp')
->email(),
Forms\Components\TextInput::make('line')
->requiredWithoutAll('email', 'whatsapp'),
Forms\Components\TextInput::make('whatsapp')
->requiredWithoutAll('email', 'line'),
])
->columns(3),