required(), Forms\Components\Select::make('city') ->options([ 'Makkah' => 'Makkah', 'Madinah' => 'Madinah', ]) ->required(), Forms\Components\FileUpload::make('image') ->image(), Forms\Components\FileUpload::make('images') ->multiple(), Forms\Components\TextInput::make('geo_location'), Forms\Components\TextInput::make('haram_distance') ->required(), Forms\Components\TextInput::make('star') ->required() ->numeric() ->minValue(1) ->maxValue(5), ]; } }